Package | Description |
---|---|
oracle.odi.interfaces.interactive |
Provides interfaces for interactive handling of Oracle Data Integrator interfaces.
|
oracle.odi.interfaces.interactive.support |
This package and its sub-packages provide the implementations for interactive handling of Oracle Data Integrator interfaces.
|
oracle.odi.interfaces.interactive.support.actions |
This package contains the Oracle Data Integrator interface action implementation classes.
|
oracle.odi.interfaces.interactive.support.clauseimporters |
This package contains the implementations to import join and filter clauses when adding new source datastores in Oracle Data Integrator interfaces.
|
oracle.odi.interfaces.interactive.support.issues |
Provides interfaces for managing Oracle Data Integrator interface issues.
|
oracle.odi.interfaces.interactive.support.mapping.automap |
This package contains the implementations for auto mapping handling when working with Oracle Data Integrator interfaces.
|
oracle.odi.interfaces.interactive.support.references.breakers |
This package contains the implementations, when working with Oracle Data Integrator interfaces, on removing cross references during a deletion of a source datastore.
|
oracle.odi.interfaces.interactive.support.sourceset.computers |
Contains classes which handles the computation of source sets of an Oracle Data Integrator interface.
|
Modifier and Type | Interface and Description |
---|---|
interface |
IInteractiveInterfaceHelper
Deprecated.
this class/method belongs to 11g SDK and is deprecated in 12c release.
Any class implementing this interface is a helper to manipulate Odi interfaces in an interactive
way.
|
interface |
IInteractiveInterfaceHelperWithActions
Deprecated.
this class/method belongs to 11g SDK and is deprecated in 12c release.
Any class implementing this interface is a helper to manipulate Odi interfaces in an interactive way.
|
Modifier and Type | Method and Description |
---|---|
void |
ISourceSetComputer.computeSourceSets(DataSet pDataSet,
IInterfaceActionListener pActionListener,
IInterfaceUndoListener pUndoListener,
IActionHelper pActionHelper)
Deprecated.
Computes the new source sets in the interface and updates them directly in the interface.
|
void |
IClauseImporter.importClauses(SourceDataStore pSourceDataStore,
IInterfaceActionListener pInterfaceActionListener,
IInterfaceUndoListener pInterfaceUndoListener,
IActionHelper pActionHelper)
Deprecated.
Adds filter and join conditions to the interface.
|
void |
IInterfaceAction.performAction(IInterfaceActionListener pInterfaceActionListener,
IInterfaceUndoListener pInterfaceUndoListener,
IActionHelper pActionHelper)
Deprecated.
Action that is performed on the ODI interface objects.
|
Modifier and Type | Class and Description |
---|---|
class |
InteractiveInterfaceHelperWithActions
Deprecated.
this class/method belongs to 11g SDK and is deprecated in 12c release.
InterfaceInterfaceHelperWithActions is a helper class that works in conjunction with
the interactive interface action classes found in package
oracle.odi.interfaces.interactive.support.actions
in order to create or modify the ODI interface objects that define the execution behavior of the interface.
The objects that can be created or modified include sources, targets, mappings,
filter, joins, and other clauses that define an ETL operation.
General Concepts: The general usage of the interactive interface helper and action classes is as follows: First create instance of this interface helper class. Then create an action class by calling it's constructor. Then call this helper's performAction method
with a reference to the action class as one of the calling parameters.
Performing the action: Though the action classes themselves have a performAction method, it is for internal
use only. The creation or modification action should be performed using the performAction
method in this helper class. Here is an example of creating a join object between two sources:
InteractiveInterfaceHelperWithActions interactiveHelper = new InteractiveInterfaceHelperWithActions(odiInterface, myOdiInstance, myOdiInstance.getTransactionalEntityManager(), new SourceSetComputerEraser(odiInterface), new SourceSetCreatorNew(), new SourceSetNameProviderBasicIncrement(), new MappingPersistencePolicyDefault());
Expression Strings: Many of the action class constructors require an expression string as a calling parameter. The expression strings may refer to objects that can be used in the interface, such as source table columns, variables, sequences, etc. When referring to source table columns in an expression string, the source table alias must be used. For example, if two join sources EMP and DEPT have aliases "EMP_ALIAS" and "DEPT_ALIAS", then the passed-in SQL join condition string might be "EMP_ALIAS.DEPTNO = DEPT_ALIAS.DEPTNO". A reliable way to create the join condition string is to create an Expression
object by calling ExpressionStringBuilder class methods, then call method
getAsString on the resultant Expression object. Here is an example
of creating the expression string "<mySrcDataStore1_alias>.DEPT_ID = <mySrcDataStore2_alias>.DEPT_ID":
ExpressionStringBuilder stringBuilder = new ExpressionStringBuilder(getLanguageProvider().getSnpsLanguageByTechnologyName(mySourceDataStore1.getModel().getTechnology().getInternalName()));
The advantage of creating it this way is that the actual string values of the data store aliases and columns do not need to be known when the code is written, and the code will remain accurate even if the alias names are later changed. Reverse Actions: Most action classes will call an undo listener to add a reverse or undo action that can be performed to undo the action itself. Auto-fix manager: This helper can contain an instance of the <@link iautofixmanager> interface. Depending on the functionality of the particular auto-fix manager implementation, it may cause problems or issues to be automatically fixed after an action is performed. Source Set Computer/Creator: This helper also contains a ISourceSetComputer and a ISourceSetCreator
interface instance object. Each interface contains a set of SourceSet objects, which
group the executable objects (e.g. joins and mappings) according to their execution location.
The source sets must be created according to some strategy, after the interface objects
have all been added. For the SDK, the source set computer and creator do this work. The
source set computer determines the strategy for creating source sets based on the interface
objects, settings, and KMs. The source set creator actually creates each source set, and
is called by the source set computer. A common source set computer implementation that
can be used for many generic cases is SourceSetComputerRetainer . The source set
computer and creator implementation instance can be passed to the helper in it's constructor.
Retrieving the created object: When an action is performed that creates a new object, for example InterfaceActionAddFilter ,
then it may be useful at some point to retrieve a reference to the newly created object or
objects. The <@link iimpacts> interface instance that is returned from the performAction
call can be used to retrieve the object. Here is a sample method that could be used to retrieve
the objects.
protected <T extends IInterfaceSubComponent> T findAddedObject(IImpacts impacts, Class<T> clazz) {
for (InterfaceObjectModification modif : impacts.getModifications())
if (clazz.isInstance(modif.getModifiedObject()) && modif.getModification().equals(InterfaceObjectModification.Modification.OBJECT_ADDED))
return (T) modif.getModifiedObject();
System.out.println("Could not find new object of type " + clazz.getName());
return null;
}
The key to this method is the use of the getModifiedObject() in the IImpacts interface.
@link>@link> |
Modifier and Type | Method and Description |
---|---|
void |
IDataStoreReferenceBreaker.breakReferences(IReference[] pReferences,
IInterfaceActionListener pInterfaceActionListener,
IInterfaceUndoListener pInterfaceUndoListener,
IActionHelper pActionHelper)
Deprecated.
Breaks the references
pReferences .Implementations should use actions on the pActionHelper to do any appropriate actions needed to break the references. |
void |
IAutoMappingComputer.performAutoMapping(DataSet pDataSet,
java.lang.String pTargetColumnName,
SourceDataStore pSourceDataStore,
IInterfaceActionListener pInterfaceActionListener,
IInterfaceUndoListener pInterfaceUndoListener,
IActionHelper pActionHelper)
Deprecated.
This method is called when a change occurs on the interface so that we can generate the mapping on the corresponding column.
It is supposed to possibly generate an automapping on the column whose name is pTargetColumnName. This should use actions to generate mappings, and if the TargetMappings need to be created, it should use the method pActionHelper.createTargetMapping() instead of creating a new TargetMapping() . |
Modifier and Type | Method and Description |
---|---|
void |
InterfaceActionAddLookup.MyClauseImporter.importClauses(SourceDataStore pSourceDataStore,
IInterfaceActionListener pInterfaceActionListener,
IInterfaceUndoListener pInterfaceUndoListener,
IActionHelper pActionHelper) |
void |
InterfaceActionAddCrossJoin.performAction(IInterfaceActionListener pInterfaceActionListener,
IInterfaceUndoListener pInterfaceUndoListener,
IActionHelper pActionHelper)
Deprecated.
For internal use only.
|
void |
InterfaceActionAddDataSet.performAction(IInterfaceActionListener pInterfaceActionListener,
IInterfaceUndoListener pInterfaceUndoListener,
IActionHelper pActionHelper)
Deprecated.
|
void |
InterfaceActionAddFilter.performAction(IInterfaceActionListener pInterfaceActionListener,
IInterfaceUndoListener pInterfaceUndoListener,
IActionHelper pActionHelper)
Deprecated.
For internal use only.
|
void |
InterfaceActionAddJoin.performAction(IInterfaceActionListener pInterfaceActionListener,
IInterfaceUndoListener pInterfaceUndoListener,
IActionHelper pActionHelper)
Deprecated.
For internal use only.
|
void |
InterfaceActionAddLookup.performAction(IInterfaceActionListener pInterfaceActionListener,
IInterfaceUndoListener pInterfaceUndoListener,
IActionHelper pActionHelper)
Deprecated.
|
void |
InterfaceActionAddNaturalJoin.performAction(IInterfaceActionListener pInterfaceActionListener,
IInterfaceUndoListener pInterfaceUndoListener,
IActionHelper pActionHelper)
Deprecated.
For internal use only.
|
void |
InterfaceActionAddSourceDataStore.performAction(IInterfaceActionListener pInterfaceActionListener,
IInterfaceUndoListener pInterfaceUndoListener,
IActionHelper pActionHelper)
Deprecated.
|
void |
InterfaceActionJournalizeSourceDataStore.performAction(IInterfaceActionListener pInterfaceActionListener,
IInterfaceUndoListener pInterfaceUndoListener,
IActionHelper pActionHelper)
Deprecated.
|
void |
InterfaceActionLookupTransform.performAction(IInterfaceActionListener pInterfaceActionListener,
IInterfaceUndoListener pInterfaceUndoListener,
IActionHelper pActionHelper)
Deprecated.
|
void |
InterfaceActionOnDataSetSetName.performAction(IInterfaceActionListener pInterfaceActionListener,
IInterfaceUndoListener pInterfaceUndoListener,
IActionHelper pActionHelper)
Deprecated.
|
void |
InterfaceActionOnDataSetSetOperator.performAction(IInterfaceActionListener pInterfaceActionListener,
IInterfaceUndoListener pInterfaceUndoListener,
IActionHelper pActionHelper)
Deprecated.
|
void |
InterfaceActionOnDataSetSetOrder.performAction(IInterfaceActionListener pInterfaceActionListener,
IInterfaceUndoListener pInterfaceUndoListener,
IActionHelper pActionHelper)
Deprecated.
|
void |
InterfaceActionOnGenericClauseSetBusinessRule.performAction(IInterfaceActionListener pInterfaceActionListener,
IInterfaceUndoListener pInterfaceUndoListener,
IActionHelper pActionHelper)
Deprecated.
|
void |
InterfaceActionOnGenericClauseSetDefaultOrder.performAction(IInterfaceActionListener pInterfaceActionListener,
IInterfaceUndoListener pInterfaceUndoListener,
IActionHelper pActionHelper)
Deprecated.
|
void |
InterfaceActionOnGenericClauseSetEnabled.performAction(IInterfaceActionListener pInterfaceActionListener,
IInterfaceUndoListener pInterfaceUndoListener,
IActionHelper pActionHelper)
Deprecated.
|
void |
InterfaceActionOnGenericClauseSetExecutionLocation.performAction(IInterfaceActionListener pInterfaceActionListener,
IInterfaceUndoListener pInterfaceUndoListener,
IActionHelper pActionHelper)
Deprecated.
|
void |
InterfaceActionOnGenericClauseSetIndexType.performAction(IInterfaceActionListener pInterfaceActionListener,
IInterfaceUndoListener pInterfaceUndoListener,
IActionHelper pActionHelper)
Deprecated.
|
void |
InterfaceActionOnGenericClauseSetOrder.performAction(IInterfaceActionListener pInterfaceActionListener,
IInterfaceUndoListener pInterfaceUndoListener,
IActionHelper pActionHelper)
Deprecated.
|
void |
InterfaceActionOnGenericClauseSetSql.performAction(IInterfaceActionListener pInterfaceActionListener,
IInterfaceUndoListener pInterfaceUndoListener,
IActionHelper pActionHelper)
Deprecated.
|
void |
InterfaceActionOnInterfaceSetDescription.performAction(IInterfaceActionListener pInterfaceActionListener,
IInterfaceUndoListener pInterfaceUndoListener,
IActionHelper pActionHelper)
Deprecated.
|
void |
InterfaceActionOnInterfaceSetName.performAction(IInterfaceActionListener pInterfaceActionListener,
IInterfaceUndoListener pInterfaceUndoListener,
IActionHelper pActionHelper)
Deprecated.
|
void |
InterfaceActionOnInterfaceSetOptimizationContext.performAction(IInterfaceActionListener pInterfaceActionListener,
IInterfaceUndoListener pInterfaceUndoListener,
IActionHelper pActionHelper)
Deprecated.
|
void |
InterfaceActionOnJoinSetJoinProperties.performAction(IInterfaceActionListener pInterfaceActionListener,
IInterfaceUndoListener pInterfaceUndoListener,
IActionHelper pActionHelper)
Deprecated.
|
void |
InterfaceActionOnLookupSetSelectLookup.performAction(IInterfaceActionListener pInterfaceActionListener,
IInterfaceUndoListener pInterfaceUndoListener,
IActionHelper pActionHelper)
Deprecated.
|
void |
InterfaceActionOnSourceDataStoreSetAlias.performAction(IInterfaceActionListener pInterfaceActionListener,
IInterfaceUndoListener pInterfaceUndoListener,
IActionHelper pActionHelper)
Deprecated.
|
void |
InterfaceActionOnSourceDataStoreSetForcedContext.performAction(IInterfaceActionListener pInterfaceActionListener,
IInterfaceUndoListener pInterfaceUndoListener,
IActionHelper pActionHelper)
Deprecated.
|
void |
InterfaceActionOnSourceDataStoreSetOrder.performAction(IInterfaceActionListener pInterfaceActionListener,
IInterfaceUndoListener pInterfaceUndoListener,
IActionHelper pActionHelper)
Deprecated.
|
void |
InterfaceActionOnSourceDataStoreSetPartition.performAction(IInterfaceActionListener pInterfaceActionListener,
IInterfaceUndoListener pInterfaceUndoListener,
IActionHelper pActionHelper)
Deprecated.
|
void |
InterfaceActionOnSourceDataStoreSetSubInterfaceAsDerived.performAction(IInterfaceActionListener pInterfaceActionListener,
IInterfaceUndoListener pInterfaceUndoListener,
IActionHelper pActionHelper)
Deprecated.
|
void |
InterfaceActionOnSourceSetSetName.performAction(IInterfaceActionListener pInterfaceActionListener,
IInterfaceUndoListener pInterfaceUndoListener,
IActionHelper pActionHelper)
Deprecated.
|
void |
InterfaceActionOnStagingAreaSetIndicator.performAction(IInterfaceActionListener pInterfaceActionListener,
IInterfaceUndoListener pInterfaceUndoListener,
IActionHelper pActionHelper)
Deprecated.
|
void |
InterfaceActionOnStagingAreaSetLogicalSchema.performAction(IInterfaceActionListener pInterfaceActionListener,
IInterfaceUndoListener pInterfaceUndoListener,
IActionHelper pActionHelper)
Deprecated.
|
void |
InterfaceActionOnTargetColumnMove.performAction(IInterfaceActionListener pInterfaceActionListener,
IInterfaceUndoListener pInterfaceUndoListener,
IActionHelper pActionHelper)
Deprecated.
For internal use only.
|
void |
InterfaceActionOnTargetColumnSetBusinessRule.performAction(IInterfaceActionListener pInterfaceActionListener,
IInterfaceUndoListener pInterfaceUndoListener,
IActionHelper pActionHelper)
Deprecated.
For internal use only.
|
void |
InterfaceActionOnTargetColumnSetDataType.performAction(IInterfaceActionListener pInterfaceActionListener,
IInterfaceUndoListener pInterfaceUndoListener,
IActionHelper pActionHelper)
Deprecated.
For internal use only.
|
void |
InterfaceActionOnTargetColumnSetEnabled.performAction(IInterfaceActionListener pInterfaceActionListener,
IInterfaceUndoListener pInterfaceUndoListener,
IActionHelper pActionHelper)
Deprecated.
For internal use only.
|
void |
InterfaceActionOnTargetColumnSetIndicator.performAction(IInterfaceActionListener pInterfaceActionListener,
IInterfaceUndoListener pInterfaceUndoListener,
IActionHelper pActionHelper)
Deprecated.
For internal use only.
|
void |
InterfaceActionOnTargetColumnSetLength.performAction(IInterfaceActionListener pInterfaceActionListener,
IInterfaceUndoListener pInterfaceUndoListener,
IActionHelper pActionHelper)
Deprecated.
For internal use only.
|
void |
InterfaceActionOnTargetColumnSetName.performAction(IInterfaceActionListener pInterfaceActionListener,
IInterfaceUndoListener pInterfaceUndoListener,
IActionHelper pActionHelper)
Deprecated.
For internal use only.
|
void |
InterfaceActionOnTargetColumnSetPosition.performAction(IInterfaceActionListener pInterfaceActionListener,
IInterfaceUndoListener pInterfaceUndoListener,
IActionHelper pActionHelper)
Deprecated.
For internal use only.
|
void |
InterfaceActionOnTargetColumnSetScale.performAction(IInterfaceActionListener pInterfaceActionListener,
IInterfaceUndoListener pInterfaceUndoListener,
IActionHelper pActionHelper)
Deprecated.
For internal use only.
|
void |
InterfaceActionOnTargetColumnSetUD.performAction(IInterfaceActionListener pInterfaceActionListener,
IInterfaceUndoListener pInterfaceUndoListener,
IActionHelper pActionHelper)
Deprecated.
For internal use only.
|
void |
InterfaceActionOnTargetDataStoreComputeAutoMapping.performAction(IInterfaceActionListener pInterfaceActionListener,
IInterfaceUndoListener pInterfaceUndoListener,
IActionHelper pActionHelper)
Deprecated.
For internal use only.
|
void |
InterfaceActionOnTargetDataStoreSetForcedContext.performAction(IInterfaceActionListener pInterfaceActionListener,
IInterfaceUndoListener pInterfaceUndoListener,
IActionHelper pActionHelper)
Deprecated.
For internal use only.
|
void |
InterfaceActionOnTargetDataStoreSetMaxErrors.performAction(IInterfaceActionListener pInterfaceActionListener,
IInterfaceUndoListener pInterfaceUndoListener,
IActionHelper pActionHelper)
Deprecated.
For internal use only.
|
void |
InterfaceActionOnTargetDataStoreSetPartition.performAction(IInterfaceActionListener pInterfaceActionListener,
IInterfaceUndoListener pInterfaceUndoListener,
IActionHelper pActionHelper)
Deprecated.
For internal use only.
|
void |
InterfaceActionOnTargetDataStoreSetUpdateKey.performAction(IInterfaceActionListener pInterfaceActionListener,
IInterfaceUndoListener pInterfaceUndoListener,
IActionHelper pActionHelper)
Deprecated.
For internal use only.
|
void |
InterfaceActionOnTargetDataStoreToTemporary.performAction(IInterfaceActionListener pInterfaceActionListener,
IInterfaceUndoListener pInterfaceUndoListener,
IActionHelper pActionHelper)
Deprecated.
For internal use only.
|
void |
InterfaceActionOnTargetMappingSetAttachedDataStore.performAction(IInterfaceActionListener pInterfaceActionListener,
IInterfaceUndoListener pInterfaceUndoListener,
IActionHelper pActionHelper)
Deprecated.
For internal use only.
|
void |
InterfaceActionOnTargetMappingSetLocation.performAction(IInterfaceActionListener pInterfaceActionListener,
IInterfaceUndoListener pInterfaceUndoListener,
IActionHelper pActionHelper)
Deprecated.
For internal use only.
|
void |
InterfaceActionOnTargetMappingSetSql.performAction(IInterfaceActionListener pInterfaceActionListener,
IInterfaceUndoListener pInterfaceUndoListener,
IActionHelper pActionHelper)
Deprecated.
For internal use only.
|
void |
InterfaceActionOnTemporaryTargetDataStoreAddColumn.performAction(IInterfaceActionListener pInterfaceActionListener,
IInterfaceUndoListener pInterfaceUndoListener,
IActionHelper pActionHelper)
Deprecated.
For internal use only.
|
void |
InterfaceActionOnTemporaryTargetDataStoreRemoveColumn.performAction(IInterfaceActionListener pInterfaceActionListener,
IInterfaceUndoListener pInterfaceUndoListener,
IActionHelper pActionHelper)
Deprecated.
For internal use only.
|
void |
InterfaceActionOnTemporaryTargetDataStoreSetDatabaseSchema.performAction(IInterfaceActionListener pInterfaceActionListener,
IInterfaceUndoListener pInterfaceUndoListener,
IActionHelper pActionHelper)
Deprecated.
For internal use only.
|
void |
InterfaceActionOnTemporaryTargetDataStoreSetName.performAction(IInterfaceActionListener pInterfaceActionListener,
IInterfaceUndoListener pInterfaceUndoListener,
IActionHelper pActionHelper)
Deprecated.
For internal use only.
|
void |
InterfaceActionRemoveDataSet.performAction(IInterfaceActionListener pInterfaceActionListener,
IInterfaceUndoListener pInterfaceUndoListener,
IActionHelper pActionHelper)
Deprecated.
For internal use only.
|
void |
InterfaceActionRemoveGenericClause.performAction(IInterfaceActionListener pInterfaceActionListener,
IInterfaceUndoListener pInterfaceUndoListener,
IActionHelper pActionHelper)
Deprecated.
For internal use only.
|
void |
InterfaceActionRemoveSourceDataStore.performAction(IInterfaceActionListener pInterfaceActionListener,
IInterfaceUndoListener pInterfaceUndoListener,
IActionHelper pActionHelper)
Deprecated.
For internal use only.
|
void |
InterfaceActionSetKM.performAction(IInterfaceActionListener pInterfaceActionListener,
IInterfaceUndoListener pInterfaceUndoListener,
IActionHelper pActionHelper)
Deprecated.
For internal use only.
|
void |
InterfaceActionSetKMOptionValue.performAction(IInterfaceActionListener pInterfaceActionListener,
IInterfaceUndoListener pInterfaceUndoListener,
IActionHelper pActionHelper)
Deprecated.
For internal use only.
|
void |
InterfaceActionSetTargetDataStore.performAction(IInterfaceActionListener pInterfaceActionListener,
IInterfaceUndoListener pInterfaceUndoListener,
IActionHelper pActionHelper)
Deprecated.
For internal use only.
|
void |
InterfaceActionSwitchDataSetOrders.performAction(IInterfaceActionListener pInterfaceActionListener,
IInterfaceUndoListener pInterfaceUndoListener,
IActionHelper pActionHelper)
Deprecated.
For internal use only.
|
Modifier and Type | Method and Description |
---|---|
void |
ClauseImporterDefault.importClauses(SourceDataStore pSourceDataStore,
IInterfaceActionListener pInterfaceActionListener,
IInterfaceUndoListener pInterfaceUndoListener,
IActionHelper pActionHelper)
Deprecated.
For internal use only
Invoked to import join and filter clauses.
|
void |
ClauseImporterLazy.importClauses(SourceDataStore pSourceDataStore,
IInterfaceActionListener pInterfaceActionListener,
IInterfaceUndoListener pInterfaceUndoListener,
IActionHelper pActionHelper)
Deprecated.
For internal use only
Invoked to import join and filter clauses.
|
Modifier and Type | Method and Description |
---|---|
java.util.Collection |
IIssuesComputer.computeIssues(IInterfaceSubComponent pSubComponent,
IActionHelper pActionHelper)
Deprecated.
Computes the errors (issues) for an interface sub-component.
|
java.util.Collection |
IIssuesManager.getIssues(IInterfaceSubComponent pSubComponent,
IActionHelper pActionHelper)
Deprecated.
Returns the issues of an interface sub-component.
|
Modifier and Type | Method and Description |
---|---|
void |
AutoMappingComputerColumnName.performAutoMapping(DataSet pDataSet,
java.lang.String pTargetColumnName,
SourceDataStore pSourceDataStore,
IInterfaceActionListener pInterfaceActionListener,
IInterfaceUndoListener pInterfaceUndoListener,
IActionHelper pActionHelper)
Deprecated.
|
void |
AutoMappingComputerLazy.performAutoMapping(DataSet pDataSet,
java.lang.String pTargetColumnName,
SourceDataStore pSourceDataStore,
IInterfaceActionListener pInterfaceActionListener,
IInterfaceUndoListener pInterfaceUndoListener,
IActionHelper pActionHelper)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
void |
DataStoreReferenceBreakerClauses.breakReferences(IReference[] pReferences,
IInterfaceActionListener pInterfaceActionListener,
IInterfaceUndoListener pInterfaceUndoListener,
IActionHelper pActionHelper)
Deprecated.
|
void |
DataStoreReferenceBreakerComposer.breakReferences(IReference[] pReferences,
IInterfaceActionListener pInterfaceActionListener,
IInterfaceUndoListener pInterfaceUndoListener,
IActionHelper pActionHelper)
Deprecated.
|
void |
DataStoreReferenceBreakerLazy.breakReferences(IReference[] pReferences,
IInterfaceActionListener pInterfaceActionListener,
IInterfaceUndoListener pInterfaceUndoListener,
IActionHelper pActionHelper)
Deprecated.
|
void |
DataStoreReferenceBreakerTargetMapping.breakReferences(IReference[] pReferences,
IInterfaceActionListener pInterfaceActionListener,
IInterfaceUndoListener pInterfaceUndoListener,
IActionHelper pActionHelper)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
void |
SourceSetComputerEraser.computeSourceSets(DataSet pDataSet,
IInterfaceActionListener pActionListener,
IInterfaceUndoListener pUndoListener,
IActionHelper pActionHelper)
Deprecated.
Computes the source sets in the interface, creates new source set objects, and updates them directly in the interface.
|
void |
SourceSetComputerLazy.computeSourceSets(DataSet pDataSet,
IInterfaceActionListener pActionListener,
IInterfaceUndoListener pUndoListener,
IActionHelper pActionHelper)
Deprecated.
|
void |
SourceSetComputerOneTable.computeSourceSets(DataSet pDataSet,
IInterfaceActionListener pActionListener,
IInterfaceUndoListener pUndoListener,
IActionHelper pActionHelper)
Deprecated.
Computes the source sets in the interface, creates new source set objects, and updates them directly in the interface.
|
void |
SourceSetComputerRetainer.computeSourceSets(DataSet pDataSet,
IInterfaceActionListener pActionListener,
IInterfaceUndoListener pUndoListener,
IActionHelper pActionHelper)
Deprecated.
Computes the source sets in the interface, reuses existing source set objects when possible and updates the KM or creates new source set objects, and updates them directly in the interface.
|