001 package railo.runtime.debug; 002 003 public interface DebugTrace { 004 005 /** 006 * @return the category 007 */ 008 public String getCategory(); 009 010 /** 011 * @return the line 012 */ 013 public int getLine(); 014 015 /** 016 * @return the template 017 */ 018 public String getTemplate(); 019 020 /** 021 * @return the text 022 */ 023 public String getText(); 024 025 /** 026 * @return the time 027 */ 028 public long getTime(); 029 030 /** 031 * @return the type 032 */ 033 public int getType(); 034 035 /** 036 * @return the var 037 */ 038 public String getVarName(); 039 /** 040 * @return the var 041 */ 042 public String getVarValue(); 043 044 }