edu.iastate.metnet.dao
Interface MultiPathwayElementNode

All Superinterfaces:
java.io.Serializable
All Known Implementing Classes:
AbstractMultiPathwayElementNode, MultiEntityNode, MultiInteractionNode

public interface MultiPathwayElementNode
extends java.io.Serializable

interface for multi-pathway graph element node

Author:
Jie Li

Method Summary
 void addAllPredGuid(java.util.Collection guidList)
          add all pred node
 void addAllSuccGuid(java.util.Collection guidList)
          add all succ node
 void addPredGuid(java.lang.String guid)
          add one pred node
 void addSuccGuid(java.lang.String guid)
          add one succ node
 java.lang.String getGuid()
           
 PathwayElementNode getLeftNode()
           
 java.lang.String getName()
          used to display the name of the node
 java.util.Set getPredGuidSet()
           
 PathwayElementNode getRightNode()
           
 java.util.Set getSuccGuidSet()
           
 void setLeftNode(PathwayElementNode leftNode)
           
 void setRightNode(PathwayElementNode rightNode)
           
 

Method Detail

getLeftNode

PathwayElementNode getLeftNode()
Returns:
Returns the leftNode.

setLeftNode

void setLeftNode(PathwayElementNode leftNode)
Parameters:
leftNode - The leftNode to set.

getRightNode

PathwayElementNode getRightNode()
Returns:
Returns the rightNode.

setRightNode

void setRightNode(PathwayElementNode rightNode)
Parameters:
rightNode - The rightNode to set.

getGuid

java.lang.String getGuid()
Returns:
Returns the guid.

addAllSuccGuid

void addAllSuccGuid(java.util.Collection guidList)
add all succ node

Parameters:
guidList - all guid of nodes

addAllPredGuid

void addAllPredGuid(java.util.Collection guidList)
add all pred node

Parameters:
guidList - all guid of nodes

addSuccGuid

void addSuccGuid(java.lang.String guid)
add one succ node

Parameters:
guid - the guid of the succ node

addPredGuid

void addPredGuid(java.lang.String guid)
add one pred node

Parameters:
guid - the guid of the pred node

getPredGuidSet

java.util.Set getPredGuidSet()
Returns:
Returns the predGuidSet.

getSuccGuidSet

java.util.Set getSuccGuidSet()
Returns:
Returns the succGuidSet.

getName

java.lang.String getName()
used to display the name of the node

Returns:
the name