Oracle Application Server TopLink API Reference
10g Release 2 (10.1.2)

B15903-01


oracle.toplink.tools.schemaframework
Class NestedTableDefinition

java.lang.Object
  extended byoracle.toplink.tools.schemaframework.DatabaseObjectDefinition
      extended byoracle.toplink.tools.schemaframework.NestedTableDefinition

All Implemented Interfaces:
java.lang.Cloneable, java.io.Serializable

public class NestedTableDefinition
extends DatabaseObjectDefinition

Purpose: Allow for creation of nested table types.

See Also:
Serialized Form

Field Summary

Fields inherited from class oracle.toplink.tools.schemaframework.DatabaseObjectDefinition
name, qualifier

Constructor Summary
NestedTableDefinition()

Method Summary
java.lang.Class getType()
PUBLIC: Return the type of the field.
java.lang.String getTypeName()
PUBLIC: Return the type of the field.
int getTypeSize()
PUBLIC: Return the size of the element field, this is only required for some field types.
void setType(java.lang.Class type)
PUBLIC: Set the type of the field.
void setTypeName(java.lang.String typeName)
PUBLIC: Set the type of the field.
void setTypeSize(int typeSize)
PUBLIC: Set the size of the element field, this is only required for some field types.

Methods inherited from class oracle.toplink.tools.schemaframework.DatabaseObjectDefinition
getName, getQualifier, setName, setQualifier, toString

Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait

Constructor Detail

NestedTableDefinition

public NestedTableDefinition()

Method Detail

getType

public java.lang.Class getType()
PUBLIC: Return the type of the field. This should be set to a java class, such as String.class, Integer.class or Date.class.

getTypeName

public java.lang.String getTypeName()
PUBLIC: Return the type of the field. This is the exact DB type name, which can be used instead of the Java class.

getTypeSize

public int getTypeSize()
PUBLIC: Return the size of the element field, this is only required for some field types.

setType

public void setType(java.lang.Class type)
PUBLIC: Set the type of the field. This should be set to a java class, such as String.class, Integer.class or Date.class.

setTypeName

public void setTypeName(java.lang.String typeName)
PUBLIC: Set the type of the field. This is the exact DB type name, which can be used instead of the Java class.

setTypeSize

public void setTypeSize(int typeSize)
PUBLIC: Set the size of the element field, this is only required for some field types.

Copyright © 1998, 2005 Oracle Corporation. All Rights Reserved.