001    package railo.runtime.debug;
002    
003    public interface DebugTimer {
004            /**
005             * @return the label
006             */
007            public String getLabel();
008    
009            /**
010             * @return the template
011             */
012            public String getTemplate();
013    
014            /**
015             * @return the time
016             */
017            public long getTime();
018    }