commonj.connector.metadata.discovery.properties
Interface TableProperty.ColumnDescriptor

All Superinterfaces:
Cloneable, PropertyDescriptor
Enclosing interface:
TableProperty

public static interface TableProperty.ColumnDescriptor
extends PropertyDescriptor

The descriptor interface for a column. Each column has a name, display name, description and a single Java type that it represents.


Method Summary
 PropertyType getType()
          Returns the Java type represented by the property.
 
Methods inherited from interface commonj.connector.metadata.discovery.properties.PropertyDescriptor
addPropertyChangeListener, clone, getDescription, getDisplayName, getID, getName, isEnabled, removePropertyChangeListener
 

Method Detail

getType

PropertyType getType()
Returns the Java type represented by the property. It is assumed that all native types are represented by their Object wrappers.
(For example: int is wrapped by java.lang.Integer)

Returns:
the non null class of the Java type represented by the property.