Dali Provisional API
Release 3.2

org.eclipse.jpt.jpa.eclipselink.core.context
Interface EclipseLinkSpecifiedAccessMethodsContainer

All Superinterfaces:
EclipseLinkAccessMethodsContainer, Model
All Known Subinterfaces:
EclipseLinkEntityMappings, EclipseLinkOrmPersistentType, EclipseLinkPersistenceUnitDefaults

public interface EclipseLinkSpecifiedAccessMethodsContainer
extends EclipseLinkAccessMethodsContainer

Common interface that can be used by clients interested only in a type or attribute's access setting (e.g. a UI composite).

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:
3.2

Field Summary
static String DEFAULT_GET_METHOD
          String constant for the default get method
static String DEFAULT_GET_METHOD_PROPERTY
          String constant associated with changes to the default get method
static String DEFAULT_SET_METHOD
          String constant for the default set method
static String DEFAULT_SET_METHOD_PROPERTY
          String constant associated with changes to the default set method
static String SPECIFIED_GET_METHOD_PROPERTY
          String constant associated with changes to the specified get method
static String SPECIFIED_SET_METHOD_PROPERTY
          String constant associated with changes to the specified get method
 
Method Summary
 String getDefaultGetMethod()
          Return the default get method
 String getDefaultSetMethod()
          Return the default set method, never null
 String getSpecifiedGetMethod()
          Return the specified get method;
 String getSpecifiedSetMethod()
          Return the specified set method;
 void setSpecifiedGetMethod(String newSpecifiedGetMethod)
          Set the specified access type.
 void setSpecifiedSetMethod(String newSpecifiedSetMethod)
          Set the specified access type.
 
Methods inherited from interface org.eclipse.jpt.jpa.eclipselink.core.context.EclipseLinkAccessMethodsContainer
getGetMethod, getSetMethod
 
Methods inherited from interface org.eclipse.jpt.common.utility.model.Model
addChangeListener, addCollectionChangeListener, addListChangeListener, addPropertyChangeListener, addStateChangeListener, removeChangeListener, removeCollectionChangeListener, removeListChangeListener, removePropertyChangeListener, removeStateChangeListener
 

Field Detail

SPECIFIED_GET_METHOD_PROPERTY

static final String SPECIFIED_GET_METHOD_PROPERTY
String constant associated with changes to the specified get method

See Also:
Constant Field Values

DEFAULT_GET_METHOD_PROPERTY

static final String DEFAULT_GET_METHOD_PROPERTY
String constant associated with changes to the default get method

See Also:
Constant Field Values

DEFAULT_GET_METHOD

static final String DEFAULT_GET_METHOD
String constant for the default get method

See Also:
Constant Field Values

SPECIFIED_SET_METHOD_PROPERTY

static final String SPECIFIED_SET_METHOD_PROPERTY
String constant associated with changes to the specified get method

See Also:
Constant Field Values

DEFAULT_SET_METHOD_PROPERTY

static final String DEFAULT_SET_METHOD_PROPERTY
String constant associated with changes to the default set method

See Also:
Constant Field Values

DEFAULT_SET_METHOD

static final String DEFAULT_SET_METHOD
String constant for the default set method

See Also:
Constant Field Values
Method Detail

getSpecifiedGetMethod

String getSpecifiedGetMethod()
Return the specified get method;


setSpecifiedGetMethod

void setSpecifiedGetMethod(String newSpecifiedGetMethod)
Set the specified access type.


getDefaultGetMethod

String getDefaultGetMethod()
Return the default get method


getSpecifiedSetMethod

String getSpecifiedSetMethod()
Return the specified set method;


setSpecifiedSetMethod

void setSpecifiedSetMethod(String newSpecifiedSetMethod)
Set the specified access type.


getDefaultSetMethod

String getDefaultSetMethod()
Return the default set method, never null


Dali Provisional API
Release 3.2

Copyright (c) 2012 Oracle. All rights reserved.