Java Doc for GraphNode.java in  » Workflow-Engines » pegasus-2.1.0 » org » griphyn » cPlanner » partitioner » graph » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Workflow Engines » pegasus 2.1.0 » org.griphyn.cPlanner.partitioner.graph 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.griphyn.cPlanner.classes.Data
      org.griphyn.cPlanner.partitioner.graph.GraphNode

GraphNode
public class GraphNode extends Data (Code)
Data class that allows us to construct information about the nodes in the abstract graph. Contains for each node the references to it's parents and children. The direction of the edges is usually following the children from a node. Parents are kept to facilitate bottom up traversals.
author:
   Karan Vahi
version:
   $Revision: 50 $


Field Summary
final public static  intBLACK_COLOR
    
final public static  intGRAY_COLOR
    
final public static  intWHITE_COLOR
    

Constructor Summary
public  GraphNode()
     The default constructor.
public  GraphNode(String id, GraphNodeContent content)
     The overloaded constructor.
public  GraphNode(String id, String name)
     The overloaded constructor.

Method Summary
public  voidaddChild(GraphNode child)
     Adds a child to end of the child list.
public  voidaddParent(GraphNode parent)
     Adds a parent to end of the parent list.
public  Objectclone()
     Returns a copy of the object.
public  BaggetBag()
     Returns the bag of objects associated with the node.
public  ListgetChildren()
     Returns a list of GraphNode objects that are children of the node.
public  GraphNodeContentgetContent()
     Returns the content associated with the node.
public  intgetDepth()
     Returns the depth of the node in the graph.
public  StringgetID()
     Returns the logical id of the graph node.
public  StringgetName()
     Returns the logical name of the graph node.
public  ListgetParents()
     Returns a list of GraphNode objects that are parents of the node.
public  booleanisColor(int color)
     Returns if the color of the node is as specified.
public  booleanparentsColored(int color)
     Returns if all the parents of that node have the color that is specified.
Parameters:
  color - the color of the node.
public  voidremoveChild(GraphNode child)
     Removes a child linkage to the node.
public  voidremoveParent(GraphNode parent)
     Removes a parent linkage to the node.
public  voidsetBag(Bag bag)
     Sets the bag of objects associated with the node.
public  voidsetChildren(List children)
     It sets the children to the node.
public  voidsetColor(int color)
    
public  voidsetContent(GraphNodeContent content)
     Sets the content associated with the node.
public  voidsetDepth(int depth)
     Sets the depth associated with the node.
public  voidsetParents(List parents)
     It adds the parents to the node.
public  StringtoString()
     The textual representation of the graph node.

Field Detail
BLACK_COLOR
final public static int BLACK_COLOR(Code)



GRAY_COLOR
final public static int GRAY_COLOR(Code)



WHITE_COLOR
final public static int WHITE_COLOR(Code)




Constructor Detail
GraphNode
public GraphNode()(Code)
The default constructor.



GraphNode
public GraphNode(String id, GraphNodeContent content)(Code)
The overloaded constructor.
Parameters:
  id - the id of the node in the graph.
Parameters:
  content - the content to be associated with the node.



GraphNode
public GraphNode(String id, String name)(Code)
The overloaded constructor.
Parameters:
  id - the logical id of the node.
Parameters:
  name - the name of the node.




Method Detail
addChild
public void addChild(GraphNode child)(Code)
Adds a child to end of the child list.
Parameters:
  child - adds a child to the node.



addParent
public void addParent(GraphNode parent)(Code)
Adds a parent to end of the parent list.
Parameters:
  parent - adds a parent to the node.



clone
public Object clone()(Code)
Returns a copy of the object.



getBag
public Bag getBag()(Code)
Returns the bag of objects associated with the node. the bag or null if no bag associated



getChildren
public List getChildren()(Code)
Returns a list of GraphNode objects that are children of the node. list of GraphNode objects.



getContent
public GraphNodeContent getContent()(Code)
Returns the content associated with the node. the content or null if no content associated



getDepth
public int getDepth()(Code)
Returns the depth of the node in the graph.



getID
public String getID()(Code)
Returns the logical id of the graph node.



getName
public String getName()(Code)
Returns the logical name of the graph node.



getParents
public List getParents()(Code)
Returns a list of GraphNode objects that are parents of the node. list of GraphNode objects.



isColor
public boolean isColor(int color)(Code)
Returns if the color of the node is as specified.
Parameters:
  color - color that node should be.



parentsColored
public boolean parentsColored(int color)(Code)
Returns if all the parents of that node have the color that is specified.
Parameters:
  color - the color of the node. true if there are no parents or all parents are of the color.false in all other cases.



removeChild
public void removeChild(GraphNode child)(Code)
Removes a child linkage to the node.
Parameters:
  child - child to be removed.



removeParent
public void removeParent(GraphNode parent)(Code)
Removes a parent linkage to the node.
Parameters:
  parent - parent to be removed.



setBag
public void setBag(Bag bag)(Code)
Sets the bag of objects associated with the node. Overwrite the previous bag if existing.
Parameters:
  bag - the Bag to be associated with the node.



setChildren
public void setChildren(List children)(Code)
It sets the children to the node. It ends up overwriting all the existing parents if some already exist.



setColor
public void setColor(int color)(Code)
Sets the color of the node to the color specified
Parameters:
  color - color that node should be.



setContent
public void setContent(GraphNodeContent content)(Code)
Sets the content associated with the node. Overwrites the previous content if existing.
Parameters:
  content - the GraphNodeContent to be associated with the node.



setDepth
public void setDepth(int depth)(Code)
Sets the depth associated with the node.



setParents
public void setParents(List parents)(Code)
It adds the parents to the node. It ends up overwriting all the existing parents if some already exist.



toString
public String toString()(Code)
The textual representation of the graph node. textual description.



Fields inherited from org.griphyn.cPlanner.classes.Data
public String mLogMsg(Code)(Java Doc)
public LogManager mLogger(Code)(Java Doc)

Methods inherited from org.griphyn.cPlanner.classes.Data
public String setToString(Set s, String delim)(Code)(Java Doc)
abstract public String toString()(Code)(Java Doc)
public String vectorToString(String heading, Vector vector)(Code)(Java Doc)

Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.