Uses of Class
org.eclipse.wst.rdb.internal.models.sql.routines.DataAccess

Packages that use DataAccess
org.eclipse.wst.rdb.internal.models.sql.routines   
org.eclipse.wst.rdb.internal.models.sql.routines.impl   
 

Uses of DataAccess in org.eclipse.wst.rdb.internal.models.sql.routines
 

Fields in org.eclipse.wst.rdb.internal.models.sql.routines declared as DataAccess
static DataAccess DataAccess.CONTAINS_SQL_LITERAL
          The 'CONTAINS SQL' literal object.
static DataAccess DataAccess.MODIFIES_SQL_DATA_LITERAL
          The 'MODIFIES SQL DATA' literal object.
static DataAccess DataAccess.NO_SQL_LITERAL
          The 'NO SQL' literal object.
static DataAccess DataAccess.READS_SQL_DATA_LITERAL
          The 'READS SQL DATA' literal object.
 

Methods in org.eclipse.wst.rdb.internal.models.sql.routines that return DataAccess
static DataAccess DataAccess.get(int value)
          Returns the 'Data Access' literal with the specified integer value.
static DataAccess DataAccess.get(java.lang.String literal)
          Returns the 'Data Access' literal with the specified literal value.
static DataAccess DataAccess.getByName(java.lang.String name)
          Returns the 'Data Access' literal with the specified name.
 DataAccess Routine.getSqlDataAccess()
          Returns the value of the 'Sql Data Access' attribute.
 

Methods in org.eclipse.wst.rdb.internal.models.sql.routines with parameters of type DataAccess
 void Routine.setSqlDataAccess(DataAccess value)
          Sets the value of the 'Sql Data Access' attribute.
 

Uses of DataAccess in org.eclipse.wst.rdb.internal.models.sql.routines.impl
 

Methods in org.eclipse.wst.rdb.internal.models.sql.routines.impl that return DataAccess
 DataAccess SQLRoutinesFactoryImpl.createDataAccessFromString(org.eclipse.emf.ecore.EDataType eDataType, java.lang.String initialValue)
           
 DataAccess RoutineImpl.getSqlDataAccess()
           
 

Methods in org.eclipse.wst.rdb.internal.models.sql.routines.impl with parameters of type DataAccess
 void RoutineImpl.setSqlDataAccess(DataAccess newSqlDataAccess)