Uses of Interface
org.drools.runtime.process.NodeInstance

Packages that use NodeInstance
org.drools.event.process Events emitted while process instances are executing. 
org.drools.runtime.process The process runtime classes. 
org.jbpm.marshalling.impl   
org.jbpm.process.instance.context.exclusive   
org.jbpm.process.workitem   
org.jbpm.workflow.instance   
org.jbpm.workflow.instance.impl   
org.jbpm.workflow.instance.impl.factory   
org.jbpm.workflow.instance.node   
 

Uses of NodeInstance in org.drools.event.process
 

Methods in org.drools.event.process that return NodeInstance
 NodeInstance ProcessNodeEvent.getNodeInstance()
          The node instance this event is related to.
 

Uses of NodeInstance in org.drools.runtime.process
 

Methods in org.drools.runtime.process that return NodeInstance
 NodeInstance ProcessContext.getNodeInstance()
          Returns the node instance that is currently being executed in this context, or null if no node instance is currently being executed.
 NodeInstance NodeInstanceContainer.getNodeInstance(long nodeInstanceId)
          Returns the node instance with the given id, or null if the node instance cannot be found.
 

Methods in org.drools.runtime.process that return types with arguments of type NodeInstance
 Collection<NodeInstance> NodeInstanceContainer.getNodeInstances()
          Returns all node instances that are currently active within this container.
 

Uses of NodeInstance in org.jbpm.marshalling.impl
 

Methods in org.jbpm.marshalling.impl that return NodeInstance
 NodeInstance ProcessInstanceMarshaller.readNodeInstance(org.drools.marshalling.impl.MarshallerReaderContext context, NodeInstanceContainer nodeInstanceContainer, WorkflowProcessInstance processInstance)
           
 NodeInstance AbstractProtobufProcessInstanceMarshaller.readNodeInstance(org.drools.marshalling.impl.MarshallerReaderContext context, NodeInstanceContainer nodeInstanceContainer, WorkflowProcessInstance processInstance)
           
 NodeInstance AbstractProcessInstanceMarshaller.readNodeInstance(org.drools.marshalling.impl.MarshallerReaderContext context, NodeInstanceContainer nodeInstanceContainer, WorkflowProcessInstance processInstance)
           
 

Methods in org.jbpm.marshalling.impl with parameters of type NodeInstance
 Object ProcessInstanceMarshaller.writeNodeInstance(org.drools.marshalling.impl.MarshallerWriteContext context, NodeInstance nodeInstance)
           
 JBPMMessages.ProcessInstance.NodeInstance AbstractProtobufProcessInstanceMarshaller.writeNodeInstance(org.drools.marshalling.impl.MarshallerWriteContext context, NodeInstance nodeInstance)
           
 Object AbstractProcessInstanceMarshaller.writeNodeInstance(org.drools.marshalling.impl.MarshallerWriteContext context, NodeInstance nodeInstance)
           
protected  JBPMMessages.ProcessInstance.NodeInstanceContent AbstractProtobufProcessInstanceMarshaller.writeNodeInstanceContent(JBPMMessages.ProcessInstance.NodeInstance.Builder _node, NodeInstance nodeInstance, org.drools.marshalling.impl.MarshallerWriteContext context)
           
protected  void AbstractProcessInstanceMarshaller.writeNodeInstanceContent(ObjectOutputStream stream, NodeInstance nodeInstance, org.drools.marshalling.impl.MarshallerWriteContext context)
           
 

Uses of NodeInstance in org.jbpm.process.instance.context.exclusive
 

Methods in org.jbpm.process.instance.context.exclusive that return types with arguments of type NodeInstance
 Collection<NodeInstance> ExclusiveGroupInstance.getNodeInstances()
           
 

Methods in org.jbpm.process.instance.context.exclusive with parameters of type NodeInstance
 void ExclusiveGroupInstance.addNodeInstance(NodeInstance nodeInstance)
           
 boolean ExclusiveGroupInstance.containsNodeInstance(NodeInstance nodeInstance)
           
 

Uses of NodeInstance in org.jbpm.process.workitem
 

Methods in org.jbpm.process.workitem that return NodeInstance
 NodeInstance AbstractWorkItemHandler.getNodeInstance(WorkItem workItem)
           
 

Uses of NodeInstance in org.jbpm.workflow.instance
 

Subinterfaces of NodeInstance in org.jbpm.workflow.instance
 interface NodeInstance
          Represents a node instance in a RuleFlow.
 

Methods in org.jbpm.workflow.instance with parameters of type NodeInstance
 void NodeInstance.trigger(NodeInstance from, String type)
           
 

Constructors in org.jbpm.workflow.instance with parameters of type NodeInstance
WorkflowRuntimeException(NodeInstance nodeInstance, Exception e)
           
 

Uses of NodeInstance in org.jbpm.workflow.instance.impl
 

Classes in org.jbpm.workflow.instance.impl that implement NodeInstance
 class ExtendedNodeInstanceImpl
           
 class NodeInstanceImpl
          Default implementation of a RuleFlow node instance.
 

Methods in org.jbpm.workflow.instance.impl that return NodeInstance
 NodeInstance NodeInstanceFactory.getNodeInstance(Node node, WorkflowProcessInstance processInstance, NodeInstanceContainer nodeInstanceContainer)
           
 

Methods in org.jbpm.workflow.instance.impl that return types with arguments of type NodeInstance
 Collection<NodeInstance> WorkflowProcessInstanceImpl.getNodeInstances()
           
 

Methods in org.jbpm.workflow.instance.impl with parameters of type NodeInstance
abstract  void NodeInstanceImpl.internalTrigger(NodeInstance from, String type)
           
 void ExtendedNodeInstanceImpl.internalTrigger(NodeInstance from, String type)
           
 void NodeInstanceImpl.trigger(NodeInstance from, String type)
           
 

Uses of NodeInstance in org.jbpm.workflow.instance.impl.factory
 

Fields in org.jbpm.workflow.instance.impl.factory with type parameters of type NodeInstance
 Class<? extends NodeInstance> ReuseNodeFactory.cls
           
 Class<? extends NodeInstance> CreateNewNodeFactory.cls
           
 

Methods in org.jbpm.workflow.instance.impl.factory that return NodeInstance
 NodeInstance ReuseNodeFactory.getNodeInstance(Node node, WorkflowProcessInstance processInstance, NodeInstanceContainer nodeInstanceContainer)
           
 NodeInstance CreateNewNodeFactory.getNodeInstance(Node node, WorkflowProcessInstance processInstance, NodeInstanceContainer nodeInstanceContainer)
           
 

Constructor parameters in org.jbpm.workflow.instance.impl.factory with type arguments of type NodeInstance
CreateNewNodeFactory(Class<? extends NodeInstance> cls)
           
ReuseNodeFactory(Class<? extends NodeInstance> cls)
           
 

Uses of NodeInstance in org.jbpm.workflow.instance.node
 

Classes in org.jbpm.workflow.instance.node that implement NodeInstance
 class ActionNodeInstance
          Runtime counterpart of an action node.
 class CatchLinkNodeInstance
           
 class CompositeContextNodeInstance
           
 class CompositeNodeInstance
          Runtime counterpart of a composite node.
 class CompositeNodeInstance.CompositeNodeEndInstance
           
 class CompositeNodeInstance.CompositeNodeStartInstance
           
 class DynamicNodeInstance
           
 class EndNodeInstance
          Runtime counterpart of an end node.
 class EventNodeInstance
          Runtime counterpart of an event node.
 class FaultNodeInstance
          Runtime counterpart of a fault node.
 class ForEachNodeInstance
          Runtime counterpart of a for each node.
 class ForEachNodeInstance.ForEachJoinNodeInstance
           
 class ForEachNodeInstance.ForEachSplitNodeInstance
           
 class HumanTaskNodeInstance
           
 class JoinInstance
          Runtime counterpart of a join node.
 class MilestoneNodeInstance
          Runtime counterpart of a milestone node.
 class RuleSetNodeInstance
          Runtime counterpart of a ruleset node.
 class SplitInstance
          Runtime counterpart of a split node.
 class StartNodeInstance
          Runtime counterpart of a start node.
 class StateBasedNodeInstance
           
 class StateNodeInstance
           
 class SubProcessNodeInstance
          Runtime counterpart of a SubFlow node.
 class ThrowLinkNodeInstance
           
 class TimerNodeInstance
           
 class WorkItemNodeInstance
          Runtime counterpart of a work item node.
 

Methods in org.jbpm.workflow.instance.node that return types with arguments of type NodeInstance
 Collection<NodeInstance> CompositeNodeInstance.getNodeInstances()
           
 

Methods in org.jbpm.workflow.instance.node with parameters of type NodeInstance
 void WorkItemNodeInstance.internalTrigger(NodeInstance from, String type)
           
 void TimerNodeInstance.internalTrigger(NodeInstance from, String type)
           
 void ThrowLinkNodeInstance.internalTrigger(NodeInstance from, String type)
           
 void SubProcessNodeInstance.internalTrigger(NodeInstance from, String type)
           
 void StateNodeInstance.internalTrigger(NodeInstance from, String type)
           
 void StateBasedNodeInstance.internalTrigger(NodeInstance from, String type)
           
 void StartNodeInstance.internalTrigger(NodeInstance from, String type)
           
 void SplitInstance.internalTrigger(NodeInstance from, String type)
           
 void RuleSetNodeInstance.internalTrigger(NodeInstance from, String type)
           
 void MilestoneNodeInstance.internalTrigger(NodeInstance from, String type)
           
 void JoinInstance.internalTrigger(NodeInstance from, String type)
           
 void ForEachNodeInstance.ForEachSplitNodeInstance.internalTrigger(NodeInstance fromm, String type)
           
 void ForEachNodeInstance.ForEachJoinNodeInstance.internalTrigger(NodeInstance from, String type)
           
 void FaultNodeInstance.internalTrigger(NodeInstance from, String type)
           
 void EventNodeInstance.internalTrigger(NodeInstance from, String type)
           
 void EndNodeInstance.internalTrigger(NodeInstance from, String type)
           
 void DynamicNodeInstance.internalTrigger(NodeInstance from, String type)
           
 void CompositeNodeInstance.internalTrigger(NodeInstance from, String type)
           
 void CompositeNodeInstance.CompositeNodeStartInstance.internalTrigger(NodeInstance from, String type)
           
 void CompositeNodeInstance.CompositeNodeEndInstance.internalTrigger(NodeInstance from, String type)
           
 void CatchLinkNodeInstance.internalTrigger(NodeInstance from, String type)
           
 void ActionNodeInstance.internalTrigger(NodeInstance from, String type)
           
 



Copyright © 2001-2012 JBoss by Red Hat. All Rights Reserved.