org.eclipse.jpt.jpa.core.context
Interface ReadOnlyBaseColumn
- All Superinterfaces:
- org.eclipse.core.runtime.IAdaptable, IResourcePart, JpaContextNode, JpaNode, Model, ReadOnlyNamedColumn
- All Known Subinterfaces:
- BaseColumn, Column, JavaBaseColumn, JavaColumn, JavaJoinColumn, JavaVirtualColumn, JavaVirtualJoinColumn, JoinColumn, OrmBaseColumn, OrmColumn, OrmJoinColumn, OrmVirtualColumn, OrmVirtualJoinColumn, ReadOnlyColumn, ReadOnlyJoinColumn, VirtualBaseColumn, VirtualColumn, VirtualJoinColumn
public interface ReadOnlyBaseColumn
- extends ReadOnlyNamedColumn
Read-only
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.
| 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 |
SPECIFIED_TABLE_PROPERTY
static final java.lang.String SPECIFIED_TABLE_PROPERTY
- See Also:
- Constant Field Values
DEFAULT_TABLE_PROPERTY
static final java.lang.String DEFAULT_TABLE_PROPERTY
- See Also:
- Constant Field Values
SPECIFIED_UNIQUE_PROPERTY
static final java.lang.String SPECIFIED_UNIQUE_PROPERTY
- See Also:
- Constant Field Values
DEFAULT_UNIQUE_PROPERTY
static final java.lang.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 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
getSpecifiedTable
java.lang.String getSpecifiedTable()
getDefaultTable
java.lang.String getDefaultTable()
isUnique
boolean isUnique()
- Return the specified unique setting if present, otherwise return the
default unique setting.
getSpecifiedUnique
java.lang.Boolean getSpecifiedUnique()
isDefaultUnique
boolean isDefaultUnique()
isNullable
boolean isNullable()
- Return the specified nullable setting if present, otherwise return the
default nullable setting.
getSpecifiedNullable
java.lang.Boolean getSpecifiedNullable()
isDefaultNullable
boolean isDefaultNullable()
isInsertable
boolean isInsertable()
- Return the specified insertable setting if present, otherwise return the
default insertable setting.
getSpecifiedInsertable
java.lang.Boolean getSpecifiedInsertable()
isDefaultInsertable
boolean isDefaultInsertable()
isUpdatable
boolean isUpdatable()
- Return the specified updatable setting if present, otherwise return the
default updatable setting.
getSpecifiedUpdatable
java.lang.Boolean getSpecifiedUpdatable()
isDefaultUpdatable
boolean isDefaultUpdatable()