com.ds.fw.database
Class FwDBFieldInfo

java.lang.Object
  |
  +--com.ds.fw.types.FwSimpleObject
        |
        +--com.ds.fw.database.FwDBFieldInfo
All Implemented Interfaces:
java.lang.Cloneable, FwCopyableIF, FwDisplayableIF, FwSimpleObjectIF, java.io.Serializable

public class FwDBFieldInfo
extends FwSimpleObject

See Also:
Serialized Form

Field Summary
 java.lang.String description
          Description of a field
 java.lang.String name
          The field name
 java.lang.Object o
          Reserved for future use
 java.lang.Object o1
          Reserved for future use
 com.ds.fw.database.FwDBBaseTable table
          The name of the table that contains this field.
 int type
          The type of the field
 
Constructor Summary
FwDBFieldInfo()
           
FwDBFieldInfo(java.lang.String n)
           
FwDBFieldInfo(java.lang.String n, int t)
           
FwDBFieldInfo(java.lang.String n, int t, com.ds.fw.database.FwDBBaseTable k)
           
 
Method Summary
 java.lang.String getDescription()
           
 java.lang.String getName()
           
 com.ds.fw.database.FwDBBaseTable getTable()
           
 int getType()
           
 void setDescription(java.lang.String n)
           
 void setName(java.lang.String n)
           
 void setTable(com.ds.fw.database.FwDBBaseTable n)
           
 void setType(int n)
           
 
Methods inherited from class com.ds.fw.types.FwSimpleObject
getClassName, getClone, getCopy, getCopy, getDeepCopy, getDisplayString, getDisplayStringFor, postCopy, printStackTrace, toString, toStringValue
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

name

public java.lang.String name
The field name


description

public java.lang.String description
Description of a field


table

public com.ds.fw.database.FwDBBaseTable table
The name of the table that contains this field. is it empty (null) it is default table


o

public java.lang.Object o
Reserved for future use


o1

public java.lang.Object o1
Reserved for future use


type

public int type
The type of the field

Constructor Detail

FwDBFieldInfo

public FwDBFieldInfo()

FwDBFieldInfo

public FwDBFieldInfo(java.lang.String n)

FwDBFieldInfo

public FwDBFieldInfo(java.lang.String n,
                     int t)

FwDBFieldInfo

public FwDBFieldInfo(java.lang.String n,
                     int t,
                     com.ds.fw.database.FwDBBaseTable k)
Method Detail

setTable

public void setTable(com.ds.fw.database.FwDBBaseTable n)

getTable

public com.ds.fw.database.FwDBBaseTable getTable()

setName

public void setName(java.lang.String n)

getName

public java.lang.String getName()

setDescription

public void setDescription(java.lang.String n)

getDescription

public java.lang.String getDescription()

setType

public void setType(int n)

getType

public int getType()