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