org.brains2b.squeler.ddl
Interface DDLDefinition

All Superinterfaces:
org.brains2b.sql.meta.SQLMetaModel
All Known Implementing Classes:
CodeDDL, ColumnDDL, ConstraintDDL, IndexDDL, TableDDL

public interface DDLDefinition
extends org.brains2b.sql.meta.SQLMetaModel


Field Summary
static int CREATE
           
static int DELETE
           
static int UPDATE
           
 
Method Summary
 int getAction()
           
 java.lang.StringBuffer getStatement()
           
 boolean isQualified()
           
 boolean isReplaceable()
           
 void setAction(int action)
           
 void setModel(org.brains2b.sql.meta.SQLMetaModel model)
           
 java.lang.String toString()
           
 
Methods inherited from interface org.brains2b.sql.meta.SQLMetaModel
getName, getRecord, getType
 

Field Detail

CREATE

static final int CREATE
See Also:
Constant Field Values

UPDATE

static final int UPDATE
See Also:
Constant Field Values

DELETE

static final int DELETE
See Also:
Constant Field Values
Method Detail

getStatement

java.lang.StringBuffer getStatement()
                                    throws SquelerDDLException
Throws:
SquelerDDLException

isReplaceable

boolean isReplaceable()

isQualified

boolean isQualified()

getAction

int getAction()

setAction

void setAction(int action)

setModel

void setModel(org.brains2b.sql.meta.SQLMetaModel model)

toString

java.lang.String toString()
Overrides:
toString in class java.lang.Object