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

All Superinterfaces:
org.eclipse.core.runtime.IAdaptable, IResourcePart, JpaContextNode, JpaNode, Model, NamedColumn, ReadOnlyNamedColumn
All Known Subinterfaces:
JavaOrderColumn2_0, OrmOrderColumn2_0

public interface OrderColumn2_0
extends NamedColumn

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
Version:
2.3

Nested Class Summary
 
Nested classes/interfaces inherited from interface org.eclipse.jpt.jpa.core.context.NamedColumn
NamedColumn.Owner
 
Field Summary
static boolean DEFAULT_INSERTABLE
           
static java.lang.String DEFAULT_INSERTABLE_PROPERTY
           
static boolean DEFAULT_NULLABLE
           
static java.lang.String DEFAULT_NULLABLE_PROPERTY
           
static boolean DEFAULT_UPDATABLE
           
static java.lang.String DEFAULT_UPDATABLE_PROPERTY
           
static java.lang.String SPECIFIED_INSERTABLE_PROPERTY
           
static java.lang.String SPECIFIED_NULLABLE_PROPERTY
           
static java.lang.String SPECIFIED_UPDATABLE_PROPERTY
           
 
Fields inherited from interface org.eclipse.jpt.jpa.core.context.ReadOnlyNamedColumn
COLUMN_DEFINITION_PROPERTY, DEFAULT_NAME_PROPERTY, SPECIFIED_NAME_PROPERTY
 
Method Summary
 java.lang.Boolean getSpecifiedInsertable()
           
 java.lang.Boolean getSpecifiedNullable()
           
 java.lang.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(java.lang.Boolean newSpecifiedInsertable)
           
 void setSpecifiedNullable(java.lang.Boolean newSpecifiedNullable)
           
 void setSpecifiedUpdatable(java.lang.Boolean newSpecifiedUpdatable)
           
 
Methods inherited from interface org.eclipse.jpt.jpa.core.context.NamedColumn
getDbTable, isResolved, setColumnDefinition, setSpecifiedName
 
Methods inherited from interface org.eclipse.jpt.jpa.core.context.ReadOnlyNamedColumn
getColumnDefinition, getDefaultName, getName, getSpecifiedName, getTable
 
Methods inherited from interface org.eclipse.jpt.jpa.core.context.JpaContextNode
getContextDefaultDbCatalog, getContextDefaultDbSchema, getContextDefaultDbSchemaContainer, getMappingFileRoot, getPersistenceUnit, getResourceType, synchronizeWithResourceModel, update
 
Methods inherited from interface org.eclipse.jpt.jpa.core.JpaNode
getJpaProject, getParent, stateChanged
 
Methods inherited from interface org.eclipse.jpt.common.utility.model.Model
addChangeListener, addCollectionChangeListener, addListChangeListener, addPropertyChangeListener, addStateChangeListener, addTreeChangeListener, removeChangeListener, removeCollectionChangeListener, removeListChangeListener, removePropertyChangeListener, removeStateChangeListener, removeTreeChangeListener
 
Methods inherited from interface org.eclipse.core.runtime.IAdaptable
getAdapter
 
Methods inherited from interface org.eclipse.jpt.common.core.IResourcePart
getResource
 

Field Detail

SPECIFIED_NULLABLE_PROPERTY

static final java.lang.String SPECIFIED_NULLABLE_PROPERTY
See Also:
Constant Field Values

DEFAULT_NULLABLE_PROPERTY

static final java.lang.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 java.lang.String SPECIFIED_INSERTABLE_PROPERTY
See Also:
Constant Field Values

DEFAULT_INSERTABLE_PROPERTY

static final java.lang.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 java.lang.String SPECIFIED_UPDATABLE_PROPERTY
See Also:
Constant Field Values

DEFAULT_UPDATABLE_PROPERTY

static final java.lang.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

java.lang.Boolean getSpecifiedNullable()

setSpecifiedNullable

void setSpecifiedNullable(java.lang.Boolean newSpecifiedNullable)

isDefaultNullable

boolean isDefaultNullable()

isInsertable

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


getSpecifiedInsertable

java.lang.Boolean getSpecifiedInsertable()

setSpecifiedInsertable

void setSpecifiedInsertable(java.lang.Boolean newSpecifiedInsertable)

isDefaultInsertable

boolean isDefaultInsertable()

isUpdatable

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


getSpecifiedUpdatable

java.lang.Boolean getSpecifiedUpdatable()

setSpecifiedUpdatable

void setSpecifiedUpdatable(java.lang.Boolean newSpecifiedUpdatable)

isDefaultUpdatable

boolean isDefaultUpdatable()