|
|||||||||||||||||||
| 30 day Evaluation Version distributed via the Maven Jar Repository. Clover is not free. You have 30 days to evaluate it. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover | |||||||||||||||||||
| Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
| IBuilder.java | - | - | - | - |
|
||||||||||||||
| 1 |
/*
|
|
| 2 |
* Joey and its relative products are published under the terms
|
|
| 3 |
* of the Apache Software License.
|
|
| 4 |
*/
|
|
| 5 |
/*
|
|
| 6 |
* Created on 2004/02/21
|
|
| 7 |
*/
|
|
| 8 |
package org.asyrinx.brownie.core.sql;
|
|
| 9 |
|
|
| 10 |
/**
|
|
| 11 |
* @author akima
|
|
| 12 |
*/
|
|
| 13 |
public interface IBuilder { |
|
| 14 |
|
|
| 15 |
public String buildField(String tableAlias, String fieldName,
|
|
| 16 |
String aliasName, String functionName); |
|
| 17 |
|
|
| 18 |
public String buildTable(String tablePrefix, String tableName,
|
|
| 19 |
String tableAlias, String indexName); |
|
| 20 |
|
|
| 21 |
public String buildCondition(String fieldName, String value,
|
|
| 22 |
Operator operator, boolean quote);
|
|
| 23 |
|
|
| 24 |
public void build(DynamicSelect dynamicSelect, StringBuffer dest); |
|
| 25 |
|
|
| 26 |
} |
|
||||||||||