org.xorm.datastore
Class Column

java.lang.Object
  |
  +--org.xorm.datastore.Column

public class Column
extends Object

A column on a table in the datastore.


Constructor Summary
Column(Table table, String name)
           
 
Method Summary
 String getFormat()
           
 String getName()
           
 String getSequence()
           
 Table getTable()
           
 String getType()
           
 boolean isAutoIncremented()
           
 boolean isManaged()
           
 boolean isNonNull()
           
 boolean isReadOnly()
           
 void setAutoIncremented(boolean autoIncremented)
           
 void setFormat(String format)
           
 void setManaged(boolean managed)
           
 void setName(String name)
           
 void setNonNull(boolean nonNull)
           
 void setReadOnly(boolean readOnly)
           
 void setSequence(String sequence)
           
 void setType(String type)
           
 String toString()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

Column

public Column(Table table,
              String name)
Method Detail

getTable

public Table getTable()

getName

public String getName()

setName

public void setName(String name)

getSequence

public String getSequence()

setSequence

public void setSequence(String sequence)

getType

public String getType()

setType

public void setType(String type)

getFormat

public String getFormat()

setFormat

public void setFormat(String format)

isAutoIncremented

public boolean isAutoIncremented()

setAutoIncremented

public void setAutoIncremented(boolean autoIncremented)

isReadOnly

public boolean isReadOnly()

setReadOnly

public void setReadOnly(boolean readOnly)

isNonNull

public boolean isNonNull()

setNonNull

public void setNonNull(boolean nonNull)

isManaged

public boolean isManaged()

setManaged

public void setManaged(boolean managed)

toString

public String toString()
Overrides:
toString in class Object


$Header: /cvsroot/xorm/xorm/docs/api/org/xorm/datastore/Column.html,v 1.6 2004/05/30 08:55:04 wbiggs Exp $