Dali Provisional API
Release 3.2

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

All Superinterfaces:
IAdaptable, JpaContextNode, JpaNode, JptResourceTypeReference, Model
All Known Subinterfaces:
Cascade2_0, OrmCascade, OrmCascade2_0

public interface Cascade
extends JpaContextNode

JPA cascade (persist, merge, remove, refresh)

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.0

Nested Class Summary
 
Nested classes/interfaces inherited from interface org.eclipse.jpt.common.core.JptResourceTypeReference
JptResourceTypeReference.ResourceTypeTransformer
 
Field Summary
static String ALL_PROPERTY
           
static String MERGE_PROPERTY
           
static String PERSIST_PROPERTY
           
static String REFRESH_PROPERTY
           
static String REMOVE_PROPERTY
           
 
Fields inherited from interface org.eclipse.jpt.common.core.JptResourceTypeReference
RESOURCE_TYPE_TRANSFORMER
 
Method Summary
 boolean isAll()
           
 boolean isMerge()
           
 boolean isPersist()
           
 boolean isRefresh()
           
 boolean isRemove()
           
 void setAll(boolean value)
           
 void setMerge(boolean value)
           
 void setPersist(boolean value)
           
 void setRefresh(boolean value)
           
 void setRemove(boolean value)
           
 
Methods inherited from interface org.eclipse.jpt.jpa.core.context.JpaContextNode
getCompletionProposals, getContextDefaultDbCatalog, getContextDefaultDbSchema, getContextDefaultDbSchemaContainer, getMappingFileRoot, getParent, getPersistenceUnit, getValidationTextRange, synchronizeWithResourceModel, update, validate
 
Methods inherited from interface org.eclipse.jpt.jpa.core.JpaNode
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

ALL_PROPERTY

static final String ALL_PROPERTY
See Also:
Constant Field Values

PERSIST_PROPERTY

static final String PERSIST_PROPERTY
See Also:
Constant Field Values

MERGE_PROPERTY

static final String MERGE_PROPERTY
See Also:
Constant Field Values

REMOVE_PROPERTY

static final String REMOVE_PROPERTY
See Also:
Constant Field Values

REFRESH_PROPERTY

static final String REFRESH_PROPERTY
See Also:
Constant Field Values
Method Detail

isAll

boolean isAll()

setAll

void setAll(boolean value)

isPersist

boolean isPersist()

setPersist

void setPersist(boolean value)

isMerge

boolean isMerge()

setMerge

void setMerge(boolean value)

isRemove

boolean isRemove()

setRemove

void setRemove(boolean value)

isRefresh

boolean isRefresh()

setRefresh

void setRefresh(boolean value)

Dali Provisional API
Release 3.2

Copyright (c) 2012 Oracle. All rights reserved.