1 16 package org.apache.cocoon.components.profiler; 17 18 import org.apache.avalon.framework.component.Component; 19 20 import java.util.Collection ; 21 22 29 public interface Profiler extends Component 30 { 31 String ROLE = Profiler.class.getName(); 32 33 36 void clearResults(); 37 38 43 void clearResult(Object key); 44 45 51 void addResult(String uri, ProfilerData data); 52 53 58 Collection getResultKeys(); 59 60 65 Collection getResults(); 66 67 73 ProfilerResult getResult(Object key); 74 } 75 | Popular Tags |