001    /*
002    @license.text@
003     */
004    package biz.hammurapi.legacy.review;
005    
006    /**
007     * @author Pavel Vlasov 
008     * @version $Revision: 1.2 $
009     */
010    public interface SourceMarker {
011            int getLine();
012            int getColumn();        
013            String getSourceURL();
014            
015            /**
016             * Crude hack, but can't come up with anything better at the time.
017             * @return "Primary key" of source file.
018             */
019            Integer getSourceId();
020    }