001 package railo.runtime.debug; 002 003 public final class DebugTimerImpl implements DebugTimer { 004 005 private static final long serialVersionUID = -4552972253450654830L; 006 007 private String label; 008 private long time; 009 private String template; 010 011 public DebugTimerImpl(String label, long time, String template) { 012 this.label = label; 013 this.time = time; 014 this.template = template; 015 } 016 017 /** 018 * @return the label 019 */ 020 public String getLabel() { 021 return label; 022 } 023 024 /** 025 * @return the template 026 */ 027 public String getTemplate() { 028 return template; 029 } 030 031 /** 032 * @return the time 033 */ 034 public long getTime() { 035 return time; 036 } 037 }