001    package biz.hammurapi.sql.syntax;
002    
003    import biz.hammurapi.sql.Parameterizer;
004    
005    /**
006     * Building block of SQL statement.
007     * SQL text is obtained through toString() method.
008     * @author Pavel
009     */
010    public interface StatementFragment extends Parameterizer {
011            
012            String toSqlString();
013    
014    }