OdiKeys, OdiConditions and OdiReferences.IInteractiveInterfaceHelpers to modify constraints.public class OdiInterface.CheckableFlowConstraint
extends java.lang.Object
| Modifier and Type | Method and Description |
|---|---|
OdiCondition |
getConditionConstraint()
Deprecated.
Returns the underlying
OdiCondition for this constraint. |
OdiKey |
getKeyConstraint()
Deprecated.
Returns the underlying
OdiKey for this constraint. |
OdiReference |
getReferenceConstraint()
Deprecated.
Returns the underlying
OdiReference for this constraint. |
boolean |
isConditionConstraint()
Deprecated.
Returns whether the underlying constraint is a condition.
|
boolean |
isDefault()
Deprecated.
Returns whether the constraint value is overridden.
|
boolean |
isFlowCheckEnabled()
Deprecated.
Returns whether the constraint is enabled for flow check.
|
boolean |
isKeyConstraint()
Deprecated.
Returns whether the underlying constraint is a key constraint.
|
boolean |
isReferenceConstraint()
Deprecated.
Returns whether the underlying constraint is a reference.
|
void |
resetToDefault()
Deprecated.
Resets the constraint value to the original value (cancels the
overridden value).
|
void |
setFlowCheckEnabled(boolean pForceCheckFlow)
Deprecated.
Overrides the value of the constraint.
|
public boolean isFlowCheckEnabled()
public boolean isDefault()
public void resetToDefault()
public void setFlowCheckEnabled(boolean pForceCheckFlow)
pForceCheckFlow - the new overridden valuepublic boolean isKeyConstraint()
true if the underlying constraint is an OdiKey, false otherwisepublic boolean isConditionConstraint()
true if the underlying constraint is an OdiCondition, false otherwisepublic boolean isReferenceConstraint()
true if the underlying constraint is an OdiReference, false otherwisepublic OdiKey getKeyConstraint()
OdiKey for this constraint. Make sure that this constraint is indeed an OdiKey constraint before calling this method,
by checking with isKeyConstraint method before.OdiKey for this constraintisKeyConstraint()public OdiCondition getConditionConstraint()
OdiCondition for this constraint. Make sure that this constraint is indeed an OdiCondition constraint before calling this method,
by checking with isConditionConstraint method before.OdiCondition for this constraintisConditionConstraint()public OdiReference getReferenceConstraint()
OdiReference for this constraint. Make sure that this constraint is indeed an OdiReference constraint before calling this method,
by checking with isReferenceConstraint method before.OdiReference for this constraintisReferenceConstraint()