001    package railo.runtime.debug;
002    
003    /**
004     * Debug information just for a part of the templates
005     *
006     */
007    public interface DebugEntryTemplatePart extends DebugEntry {
008            /**
009             * start position (0 offset) on this Entry
010             * @return
011             */
012            public int getStartPosition();
013            
014            /**
015             * end position (0 offset) on this Entry
016             * @return
017             */
018            public int getEndPosition();
019    }