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