Uses of Class
org.eclipse.wst.rdb.internal.models.sql.schema.ReferentialActionType

Packages that use ReferentialActionType
org.eclipse.wst.rdb.internal.models.sql.constraints   
org.eclipse.wst.rdb.internal.models.sql.constraints.impl   
org.eclipse.wst.rdb.internal.models.sql.datatypes   
org.eclipse.wst.rdb.internal.models.sql.datatypes.impl   
org.eclipse.wst.rdb.internal.models.sql.schema   
org.eclipse.wst.rdb.internal.models.sql.schema.impl   
org.eclipse.wst.rdb.internal.models.sql.tables   
org.eclipse.wst.rdb.internal.models.sql.tables.impl   
 

Uses of ReferentialActionType in org.eclipse.wst.rdb.internal.models.sql.constraints
 

Methods in org.eclipse.wst.rdb.internal.models.sql.constraints that return ReferentialActionType
 ReferentialActionType ForeignKey.getOnDelete()
          Returns the value of the 'On Delete' attribute.
 ReferentialActionType ForeignKey.getOnUpdate()
          Returns the value of the 'On Update' attribute.
 

Methods in org.eclipse.wst.rdb.internal.models.sql.constraints with parameters of type ReferentialActionType
 void ForeignKey.setOnDelete(ReferentialActionType value)
          Sets the value of the 'On Delete' attribute.
 void ForeignKey.setOnUpdate(ReferentialActionType value)
          Sets the value of the 'On Update' attribute.
 

Uses of ReferentialActionType in org.eclipse.wst.rdb.internal.models.sql.constraints.impl
 

Methods in org.eclipse.wst.rdb.internal.models.sql.constraints.impl that return ReferentialActionType
 ReferentialActionType ForeignKeyImpl.getOnDelete()
           
 ReferentialActionType ForeignKeyImpl.getOnUpdate()
           
 

Methods in org.eclipse.wst.rdb.internal.models.sql.constraints.impl with parameters of type ReferentialActionType
 void ForeignKeyImpl.setOnDelete(ReferentialActionType newOnDelete)
           
 void ForeignKeyImpl.setOnUpdate(ReferentialActionType newOnUpdate)
           
 

Uses of ReferentialActionType in org.eclipse.wst.rdb.internal.models.sql.datatypes
 

Methods in org.eclipse.wst.rdb.internal.models.sql.datatypes that return ReferentialActionType
 ReferentialActionType Field.getScopeCheck()
          Returns the value of the 'Scope Check' attribute.
 ReferentialActionType AttributeDefinition.getScopeCheck()
          Returns the value of the 'Scope Check' attribute.
 

Methods in org.eclipse.wst.rdb.internal.models.sql.datatypes with parameters of type ReferentialActionType
 void Field.setScopeCheck(ReferentialActionType value)
          Sets the value of the 'Scope Check' attribute.
 void AttributeDefinition.setScopeCheck(ReferentialActionType value)
          Sets the value of the 'Scope Check' attribute.
 

Uses of ReferentialActionType in org.eclipse.wst.rdb.internal.models.sql.datatypes.impl
 

Methods in org.eclipse.wst.rdb.internal.models.sql.datatypes.impl that return ReferentialActionType
 ReferentialActionType FieldImpl.getScopeCheck()
           
 ReferentialActionType AttributeDefinitionImpl.getScopeCheck()
           
 

Methods in org.eclipse.wst.rdb.internal.models.sql.datatypes.impl with parameters of type ReferentialActionType
 void FieldImpl.setScopeCheck(ReferentialActionType newScopeCheck)
           
 void AttributeDefinitionImpl.setScopeCheck(ReferentialActionType newScopeCheck)
           
 

Uses of ReferentialActionType in org.eclipse.wst.rdb.internal.models.sql.schema
 

Fields in org.eclipse.wst.rdb.internal.models.sql.schema declared as ReferentialActionType
static ReferentialActionType ReferentialActionType.CASCADE_LITERAL
          The 'CASCADE' literal object.
static ReferentialActionType ReferentialActionType.NO_ACTION_LITERAL
          The 'NO ACTION' literal object.
static ReferentialActionType ReferentialActionType.RESTRICT_LITERAL
          The 'RESTRICT' literal object.
static ReferentialActionType ReferentialActionType.SET_DEFAULT_LITERAL
          The 'SET DEFAULT' literal object.
static ReferentialActionType ReferentialActionType.SET_NULL_LITERAL
          The 'SET NULL' literal object.
 

Methods in org.eclipse.wst.rdb.internal.models.sql.schema that return ReferentialActionType
static ReferentialActionType ReferentialActionType.get(int value)
          Returns the 'Referential Action Type' literal with the specified integer value.
static ReferentialActionType ReferentialActionType.get(java.lang.String literal)
          Returns the 'Referential Action Type' literal with the specified literal value.
static ReferentialActionType ReferentialActionType.getByName(java.lang.String name)
          Returns the 'Referential Action Type' literal with the specified name.
 

Uses of ReferentialActionType in org.eclipse.wst.rdb.internal.models.sql.schema.impl
 

Methods in org.eclipse.wst.rdb.internal.models.sql.schema.impl that return ReferentialActionType
 ReferentialActionType SQLSchemaFactoryImpl.createReferentialActionTypeFromString(org.eclipse.emf.ecore.EDataType eDataType, java.lang.String initialValue)
           
 

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

Methods in org.eclipse.wst.rdb.internal.models.sql.tables that return ReferentialActionType
 ReferentialActionType Column.getScopeCheck()
          Returns the value of the 'Scope Check' attribute.
 

Methods in org.eclipse.wst.rdb.internal.models.sql.tables with parameters of type ReferentialActionType
 void Column.setScopeCheck(ReferentialActionType value)
          Sets the value of the 'Scope Check' attribute.
 

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

Methods in org.eclipse.wst.rdb.internal.models.sql.tables.impl that return ReferentialActionType
 ReferentialActionType ColumnImpl.getScopeCheck()
           
 

Methods in org.eclipse.wst.rdb.internal.models.sql.tables.impl with parameters of type ReferentialActionType
 void ColumnImpl.setScopeCheck(ReferentialActionType newScopeCheck)