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