Tuscany DAS for Relational Databases

org.apache.tuscany.das.rdb.config
Interface Column

All Known Implementing Classes:
ColumnImpl

public interface Column

A representation of the model object 'Column'.

The following features are supported:


Method Summary
 String getColumnType()
          Returns the value of the 'Column Type' attribute.
 String getConverterClassName()
          Returns the value of the 'Converter Class Name' attribute.
 String getName()
          Returns the value of the 'Name' attribute.
 String getPropertyName()
          Returns the value of the 'Property Name' attribute.
 String getTable()
          Returns the value of the 'Table' attribute.
 boolean isCollision()
          Returns the value of the 'Collision' attribute.
 boolean isGenerated()
          Returns the value of the 'Generated' attribute.
 boolean isPrimaryKey()
          Returns the value of the 'Primary Key' attribute.
 void setCollision(boolean value)
          Sets the value of the 'Collision' attribute.
 void setColumnType(String value)
          Sets the value of the 'Column Type' attribute.
 void setConverterClassName(String value)
          Sets the value of the 'Converter Class Name' attribute.
 void setGenerated(boolean value)
          Sets the value of the 'Generated' attribute.
 void setName(String value)
          Sets the value of the 'Name' attribute.
 void setPrimaryKey(boolean value)
          Sets the value of the 'Primary Key' attribute.
 void setPropertyName(String value)
          Sets the value of the 'Property Name' attribute.
 void setTable(String value)
          Sets the value of the 'Table' attribute.
 

Method Detail

isCollision

boolean isCollision()
Returns the value of the 'Collision' attribute.

If the meaning of the 'Collision' attribute isn't clear, there really should be more of a description here...

Returns:
the value of the 'Collision' attribute.
See Also:
setCollision(boolean)

setCollision

void setCollision(boolean value)
Sets the value of the 'Collision' attribute.

Parameters:
value - the new value of the 'Collision' attribute.
See Also:
isCollision()

getColumnType

String getColumnType()
Returns the value of the 'Column Type' attribute.

If the meaning of the 'Column Type' attribute isn't clear, there really should be more of a description here...

Returns:
the value of the 'Column Type' attribute.
See Also:
setColumnType(String)

setColumnType

void setColumnType(String value)
Sets the value of the 'Column Type' attribute.

Parameters:
value - the new value of the 'Column Type' attribute.
See Also:
getColumnType()

getConverterClassName

String getConverterClassName()
Returns the value of the 'Converter Class Name' attribute.

If the meaning of the 'Converter Class Name' attribute isn't clear, there really should be more of a description here...

Returns:
the value of the 'Converter Class Name' attribute.
See Also:
setConverterClassName(String)

setConverterClassName

void setConverterClassName(String value)
Sets the value of the 'Converter Class Name' attribute.

Parameters:
value - the new value of the 'Converter Class Name' attribute.
See Also:
getConverterClassName()

isGenerated

boolean isGenerated()
Returns the value of the 'Generated' attribute.

If the meaning of the 'Generated' attribute isn't clear, there really should be more of a description here...

Returns:
the value of the 'Generated' attribute.
See Also:
setGenerated(boolean)

setGenerated

void setGenerated(boolean value)
Sets the value of the 'Generated' attribute.

Parameters:
value - the new value of the 'Generated' attribute.
See Also:
isGenerated()

getName

String getName()
Returns the value of the 'Name' attribute.

If the meaning of the 'Name' attribute isn't clear, there really should be more of a description here...

Returns:
the value of the 'Name' attribute.
See Also:
setName(String)

setName

void setName(String value)
Sets the value of the 'Name' attribute.

Parameters:
value - the new value of the 'Name' attribute.
See Also:
getName()

isPrimaryKey

boolean isPrimaryKey()
Returns the value of the 'Primary Key' attribute.

If the meaning of the 'Primary Key' attribute isn't clear, there really should be more of a description here...

Returns:
the value of the 'Primary Key' attribute.
See Also:
setPrimaryKey(boolean)

setPrimaryKey

void setPrimaryKey(boolean value)
Sets the value of the 'Primary Key' attribute.

Parameters:
value - the new value of the 'Primary Key' attribute.
See Also:
isPrimaryKey()

getPropertyName

String getPropertyName()
Returns the value of the 'Property Name' attribute.

If the meaning of the 'Property Name' attribute isn't clear, there really should be more of a description here...

Returns:
the value of the 'Property Name' attribute.
See Also:
setPropertyName(String)

setPropertyName

void setPropertyName(String value)
Sets the value of the 'Property Name' attribute.

Parameters:
value - the new value of the 'Property Name' attribute.
See Also:
getPropertyName()

getTable

String getTable()
Returns the value of the 'Table' attribute.

If the meaning of the 'Table' attribute isn't clear, there really should be more of a description here...

Returns:
the value of the 'Table' attribute.
See Also:
setTable(String)

setTable

void setTable(String value)
Sets the value of the 'Table' attribute.

Parameters:
value - the new value of the 'Table' attribute.
See Also:
getTable()

Tuscany DAS for Relational Databases

-