站内搜索: 请输入搜索关键词
当前页面: 在线文档首页 > JBoss RULES 4.0.0.11754MR2 API 英文版文档

INode (Drools 4.0.0.11754MR2 API) - JBoss RULES 4.0.0.11754MR2 API 英文版文档


org.drools.ruleflow.core
Interface INode

All Superinterfaces:
Serializable
All Known Subinterfaces:
IEndNode, IJoin, IRuleSetNode, ISplit, IStartNode
All Known Implementing Classes:
EndNode, Join, Node, RuleSetNode, Split, StartNode

public interface INode
extends Serializable

Represents a node in a RuleFlow.

Author:
Kris Verlaenen

Method Summary
 long getId()
          Returns the id of the node
 List getIncomingConnections()
          Returns the incoming connections
 String getName()
          Returns the name of the node
 List getOutgoingConnections()
          Returns the outgoing connections
 void setId(long id)
          Method for setting the id of the node
 void setName(String name)
          Method for setting the name of the node
 

Method Detail

getId

long getId()
Returns the id of the node

Returns:
the id of the node

setId

void setId(long id)
Method for setting the id of the node

Parameters:
id - the id of the node

getName

String getName()
Returns the name of the node

Returns:
the name of the node

setName

void setName(String name)
Method for setting the name of the node

Parameters:
name - the name of the node

getIncomingConnections

List getIncomingConnections()
Returns the incoming connections

Returns:
the incoming connections

getOutgoingConnections

List getOutgoingConnections()
Returns the outgoing connections

Returns:
the outgoing connections


Copyright © 2001-2007 JBoss Inc.. All Rights Reserved.