Dali Provisional API
Release 3.2

org.eclipse.jpt.jpa.core.context
Interface BaseColumn

All Superinterfaces:
IAdaptable, JpaContextModel, JpaModel, JptResourceTypeReference, Model, NamedColumn, TableColumn
All Known Subinterfaces:
Column, JavaSpecifiedBaseColumn, JavaSpecifiedColumn, JavaSpecifiedJoinColumn, JoinColumn, OrmSpecifiedBaseColumn, OrmSpecifiedColumn, OrmSpecifiedJoinColumn, SpecifiedBaseColumn, SpecifiedColumn, SpecifiedJoinColumn, VirtualBaseColumn, VirtualColumn, VirtualJoinColumn

public interface BaseColumn
extends TableColumn

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.


Nested Class Summary
 
Nested classes/interfaces inherited from interface org.eclipse.jpt.jpa.core.context.TableColumn
TableColumn.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_UNIQUE
           
static String DEFAULT_UNIQUE_PROPERTY
           
static boolean DEFAULT_UPDATABLE
           
static String DEFAULT_UPDATABLE_PROPERTY
           
static String SPECIFIED_INSERTABLE_PROPERTY
           
static String SPECIFIED_NULLABLE_PROPERTY
           
static String SPECIFIED_UNIQUE_PROPERTY
           
static String SPECIFIED_UPDATABLE_PROPERTY
           
 
Fields inherited from interface org.eclipse.jpt.jpa.core.context.TableColumn
DEFAULT_TABLE_NAME_PROPERTY, SPECIFIED_TABLE_NAME_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 getSpecifiedUnique()
           
 Boolean getSpecifiedUpdatable()
           
 boolean isDefaultInsertable()
           
 boolean isDefaultNullable()
           
 boolean isDefaultUnique()
           
 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 isUnique()
          Return the specified unique setting if present, otherwise return the default unique setting.
 boolean isUpdatable()
          Return the specified updatable setting if present, otherwise return the default updatable setting.
 
Methods inherited from interface org.eclipse.jpt.jpa.core.context.TableColumn
getCandidateTableNames, getDefaultTableName, getSpecifiedTableName, getTableNameValidationTextRange, tableNameIsInvalid
 
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_UNIQUE_PROPERTY

static final String SPECIFIED_UNIQUE_PROPERTY
See Also:
Constant Field Values

DEFAULT_UNIQUE_PROPERTY

static final String DEFAULT_UNIQUE_PROPERTY
See Also:
Constant Field Values

DEFAULT_UNIQUE

static final boolean DEFAULT_UNIQUE
See Also:
Constant Field Values

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

isUnique

boolean isUnique()
Return the specified unique setting if present, otherwise return the default unique setting.


getSpecifiedUnique

Boolean getSpecifiedUnique()

isDefaultUnique

boolean isDefaultUnique()

isNullable

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


getSpecifiedNullable

Boolean getSpecifiedNullable()

isDefaultNullable

boolean isDefaultNullable()

isInsertable

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


getSpecifiedInsertable

Boolean getSpecifiedInsertable()

isDefaultInsertable

boolean isDefaultInsertable()

isUpdatable

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


getSpecifiedUpdatable

Boolean getSpecifiedUpdatable()

isDefaultUpdatable

boolean isDefaultUpdatable()

Dali Provisional API
Release 3.2

Copyright (c) 2012 Oracle. All rights reserved.