Dali Provisional API
Release 3.2

org.eclipse.jpt.jpa.core.jpa2.context
Interface SpecifiedOrderColumn2_0

All Superinterfaces:
IAdaptable, JpaContextModel, JpaModel, JptResourceTypeReference, Model, NamedColumn, SpecifiedNamedColumn
All Known Subinterfaces:
JavaSpecifiedOrderColumn2_0, OrmSpecifiedOrderColumn2_0

public interface SpecifiedOrderColumn2_0
extends SpecifiedNamedColumn

Specified order column

Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability. It is available at this early stage to solicit feedback from pioneering adopters on the understanding that any code that uses this API will almost certainly be broken (repeatedly) as the API evolves.

Since:
2.3

Nested Class Summary
 
Nested classes/interfaces inherited from interface org.eclipse.jpt.jpa.core.context.NamedColumn
NamedColumn.ParentAdapter
 
Nested classes/interfaces inherited from interface org.eclipse.jpt.jpa.core.JpaModel
JpaModel.JpaVersionIsCompatibleWith
 
Nested classes/interfaces inherited from interface org.eclipse.jpt.common.core.JptResourceTypeReference
JptResourceTypeReference.ResourceTypeIsKindOf, JptResourceTypeReference.ResourceTypeTransformer
 
Field Summary
static boolean DEFAULT_INSERTABLE
           
static String DEFAULT_INSERTABLE_PROPERTY
           
static boolean DEFAULT_NULLABLE
           
static String DEFAULT_NULLABLE_PROPERTY
           
static boolean DEFAULT_UPDATABLE
           
static String DEFAULT_UPDATABLE_PROPERTY
           
static String SPECIFIED_INSERTABLE_PROPERTY
           
static String SPECIFIED_NULLABLE_PROPERTY
           
static String SPECIFIED_UPDATABLE_PROPERTY
           
 
Fields inherited from interface org.eclipse.jpt.jpa.core.context.NamedColumn
COLUMN_DEFINITION_PROPERTY, DB_TABLE_PROPERTY, DEFAULT_NAME_PROPERTY, SPECIFIED_NAME_PROPERTY
 
Fields inherited from interface org.eclipse.jpt.common.core.JptResourceTypeReference
TRANSFORMER
 
Method Summary
 Boolean getSpecifiedInsertable()
           
 Boolean getSpecifiedNullable()
           
 Boolean getSpecifiedUpdatable()
           
 boolean isDefaultInsertable()
           
 boolean isDefaultNullable()
           
 boolean isDefaultUpdatable()
           
 boolean isInsertable()
          Return the specified insertable setting if present, otherwise return the default insertable setting.
 boolean isNullable()
          Return the specified nullable setting if present, otherwise return the default nullable setting.
 boolean isUpdatable()
          Return the specified updatable setting if present, otherwise return the default updatable setting.
 void setSpecifiedInsertable(Boolean newSpecifiedInsertable)
           
 void setSpecifiedNullable(Boolean newSpecifiedNullable)
           
 void setSpecifiedUpdatable(Boolean newSpecifiedUpdatable)
           
 
Methods inherited from interface org.eclipse.jpt.jpa.core.context.SpecifiedNamedColumn
setColumnDefinition, setSpecifiedName
 
Methods inherited from interface org.eclipse.jpt.jpa.core.context.NamedColumn
getColumnDefinition, getDbTable, getDefaultName, getName, getNameValidationTextRange, getSpecifiedName, getTableName, isResolved, isVirtual
 
Methods inherited from interface org.eclipse.jpt.jpa.core.context.JpaContextModel
getCompletionProposals, getContextDefaultDbCatalog, getContextDefaultDbSchema, getContextDefaultDbSchemaContainer, getMappingFileRoot, getParent, getPersistenceUnit, getValidationTextRange, synchronizeWithResourceModel, update, validate
 
Methods inherited from interface org.eclipse.jpt.jpa.core.JpaModel
getJpaPlatform, getJpaProject, getJpaProjectManager, getResource, stateChanged
 
Methods inherited from interface org.eclipse.jpt.common.utility.model.Model
addChangeListener, addCollectionChangeListener, addListChangeListener, addPropertyChangeListener, addStateChangeListener, removeChangeListener, removeCollectionChangeListener, removeListChangeListener, removePropertyChangeListener, removeStateChangeListener
 
Methods inherited from interface org.eclipse.core.runtime.IAdaptable
getAdapter
 
Methods inherited from interface org.eclipse.jpt.common.core.JptResourceTypeReference
getResourceType
 

Field Detail

SPECIFIED_NULLABLE_PROPERTY

static final String SPECIFIED_NULLABLE_PROPERTY
See Also:
Constant Field Values

DEFAULT_NULLABLE_PROPERTY

static final String DEFAULT_NULLABLE_PROPERTY
See Also:
Constant Field Values

DEFAULT_NULLABLE

static final boolean DEFAULT_NULLABLE
See Also:
Constant Field Values

SPECIFIED_INSERTABLE_PROPERTY

static final String SPECIFIED_INSERTABLE_PROPERTY
See Also:
Constant Field Values

DEFAULT_INSERTABLE_PROPERTY

static final String DEFAULT_INSERTABLE_PROPERTY
See Also:
Constant Field Values

DEFAULT_INSERTABLE

static final boolean DEFAULT_INSERTABLE
See Also:
Constant Field Values

SPECIFIED_UPDATABLE_PROPERTY

static final String SPECIFIED_UPDATABLE_PROPERTY
See Also:
Constant Field Values

DEFAULT_UPDATABLE_PROPERTY

static final String DEFAULT_UPDATABLE_PROPERTY
See Also:
Constant Field Values

DEFAULT_UPDATABLE

static final boolean DEFAULT_UPDATABLE
See Also:
Constant Field Values
Method Detail

isNullable

boolean isNullable()
Return the specified nullable setting if present, otherwise return the default nullable setting.


getSpecifiedNullable

Boolean getSpecifiedNullable()

setSpecifiedNullable

void setSpecifiedNullable(Boolean newSpecifiedNullable)

isDefaultNullable

boolean isDefaultNullable()

isInsertable

boolean isInsertable()
Return the specified insertable setting if present, otherwise return the default insertable setting.


getSpecifiedInsertable

Boolean getSpecifiedInsertable()

setSpecifiedInsertable

void setSpecifiedInsertable(Boolean newSpecifiedInsertable)

isDefaultInsertable

boolean isDefaultInsertable()

isUpdatable

boolean isUpdatable()
Return the specified updatable setting if present, otherwise return the default updatable setting.


getSpecifiedUpdatable

Boolean getSpecifiedUpdatable()

setSpecifiedUpdatable

void setSpecifiedUpdatable(Boolean newSpecifiedUpdatable)

isDefaultUpdatable

boolean isDefaultUpdatable()

Dali Provisional API
Release 3.2

Copyright (c) 2012 Oracle. All rights reserved.