Uses of Class
org.eclipse.wst.rdb.internal.models.sql.tables.ReferenceType

Packages that use ReferenceType
org.eclipse.wst.rdb.internal.models.sql.tables   
org.eclipse.wst.rdb.internal.models.sql.tables.impl   
 

Uses of ReferenceType in org.eclipse.wst.rdb.internal.models.sql.tables
 

Fields in org.eclipse.wst.rdb.internal.models.sql.tables declared as ReferenceType
static ReferenceType ReferenceType.DERIVED_SELF_REF_LITERAL
          The 'DERIVED SELF REF' literal object.
static ReferenceType ReferenceType.SYSTEM_GENERATED_LITERAL
          The 'SYSTEM GENERATED' literal object.
static ReferenceType ReferenceType.USER_GENERATED_LITERAL
          The 'USER GENERATED' literal object.
 

Methods in org.eclipse.wst.rdb.internal.models.sql.tables that return ReferenceType
static ReferenceType ReferenceType.get(int value)
          Returns the 'Reference Type' literal with the specified integer value.
static ReferenceType ReferenceType.get(java.lang.String literal)
          Returns the 'Reference Type' literal with the specified literal value.
static ReferenceType ReferenceType.getByName(java.lang.String name)
          Returns the 'Reference Type' literal with the specified name.
 ReferenceType Table.getSelfRefColumnGeneration()
          Returns the value of the 'Self Ref Column Generation' attribute.
 

Methods in org.eclipse.wst.rdb.internal.models.sql.tables with parameters of type ReferenceType
 void Table.setSelfRefColumnGeneration(ReferenceType value)
          Sets the value of the 'Self Ref Column Generation' attribute.
 

Uses of ReferenceType in org.eclipse.wst.rdb.internal.models.sql.tables.impl
 

Methods in org.eclipse.wst.rdb.internal.models.sql.tables.impl that return ReferenceType
 ReferenceType SQLTablesFactoryImpl.createReferenceTypeFromString(org.eclipse.emf.ecore.EDataType eDataType, java.lang.String initialValue)
           
 ReferenceType TableImpl.getSelfRefColumnGeneration()
           
 

Methods in org.eclipse.wst.rdb.internal.models.sql.tables.impl with parameters of type ReferenceType
 void TableImpl.setSelfRefColumnGeneration(ReferenceType newSelfRefColumnGeneration)