Inspector | Message | Severity | Location |
---|---|---|---|
Java Inspector 048 | Copyrights information should be present in each file. | 1 |
1package biz.hammurapi.sql.syntax;
2
3import biz.hammurapi.sql.Parameterizer;
4
5/**
6 * Building block of SQL statement.
7 * SQL text is obtained through toString() method.
8 * @author Pavel
9 */
10public interface StatementFragment extends Parameterizer {
11
12 String toSqlString();
13
14}
15