Home | History | Annotate | Download | only in profiler

Lines Matching refs:profiler

25 package org.slf4j.profiler;
39 Map<String, Profiler> profilerMap = new HashMap<String, Profiler>();
41 public void put(Profiler profiler) {
42 put(profiler.getName(), profiler);
45 public void put(String name, Profiler profiler) {
46 profilerMap.put(name, profiler);
58 public Profiler get(String name) {