001    package railo.runtime.debug;
002    
003    import railo.runtime.db.SQL;
004    
005    /**
006     * a single query entry
007     */
008    public interface QueryEntry {
009    
010        /**
011         * @return Returns the exe.
012         */
013        public abstract int getExe();
014    
015        /**
016         * @return Returns the query.
017         */
018        public abstract SQL getSQL();
019    
020        /**
021         * @return Returns the src.
022         */
023        public abstract String getSrc();
024    
025        /**
026         * @return Returns the name.
027         */
028        public abstract String getName();
029    
030        /**
031         * @return Returns the recordcount.
032         */
033        public abstract int getRecordcount();
034    
035        /**
036         * @return Returns the datasource.
037         */
038        public abstract String getDatasource();
039    
040    }