ilog.rules.rf.model
Interface IlrRFModelElement
-
- All Superinterfaces:
- java.lang.Cloneable, IlrDecorableElement, IlrRFElement
- All Known Subinterfaces:
- IlrRFBranchNode, IlrRFConcurrencyNode, IlrRFFunctionTask, IlrRFGenericTask, IlrRFNode, IlrRFRoutingNode, IlrRFRuleTask, IlrRFStartTask, IlrRFStopTask, IlrRFSubflowTask, IlrRFTask, IlrRFTaskNode, IlrRFTransition
public interface IlrRFModelElement extends IlrRFElement
An element of anIlrRFModel. NOTE: This interface is provided for documentation purposes, but is not intended to be implemented directly.- Since:
- JRules 7.0
-
-
Field Summary
Fields Modifier and Type Field and Description static java.lang.StringID_PROPERTY-
Fields inherited from interface ilog.rules.rf.model.IlrRFElement
LABEL_PROPERTY
-
Fields inherited from interface ilog.rules.shared.model.IlrDecorableElement
INSTANCE, TRANSIENT, VOLATILE
-
-
Method Summary
Methods Modifier and Type Method and Description java.lang.StringgetID()Returns an unique internal ID used to uniquely identify an element in a ruleflow model.IlrRFModelgetRFModel()Returns the model containing this model element.voidremove()Removes this element from its ruleflow model.voidsetID(java.lang.String ID)Sets a unique internal ID used to uniquely identify an element in a ruleflow model.-
Methods inherited from interface ilog.rules.rf.model.IlrRFElement
accept
-
Methods inherited from interface ilog.rules.shared.model.IlrDecorableElement
addProperties, clearProperties, clearVolatileProperties, clone, getProperties, getProperty, setProperty
-
-
-
-
Field Detail
-
ID_PROPERTY
static final java.lang.String ID_PROPERTY
- See Also:
- Constant Field Values
-
-
Method Detail
-
getRFModel
IlrRFModel getRFModel()
Returns the model containing this model element.- Returns:
- the model containing this model element.
-
getID
java.lang.String getID()
Returns an unique internal ID used to uniquely identify an element in a ruleflow model.- Returns:
- an unique internal ID used to uniquely identify an element in a ruleflow model.
-
setID
void setID(java.lang.String ID)
Sets a unique internal ID used to uniquely identify an element in a ruleflow model.- Parameters:
ID- the new ID.
-
remove
void remove()
Removes this element from its ruleflow model.
-
-