Java Doc for Graph.java in  » Workflow-Engines » pegasus-2.1.0 » org » griphyn » vdl » planner » 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.vdl.planner 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.griphyn.vdl.planner.Graph

Graph
public class Graph implements Cloneable(Code)
This class is used to represent the graph form of a workflow. The graph is represented using adjaceny lists. Each node is the name of a job in the workflow. The arcs represent dependencies of the jobs on one another.
author:
   Jens-S. Vöckler
author:
   Yong Zhao
version:
   $Revision $



Constructor Summary
public  Graph()
    
public  Graph(Reader reader)
     Reads a stream representing the graph.

Method Summary
public  voidaddArc(String v, String w)
     Adds a directed edge between two nodes.
public  voidaddVertex(String node)
     Adds a vertex to the adjacency list.
public  Objectclone()
     Clones the graph using a deep copy.
public  IteratorgetVertices()
     Provides an iterator over the vertices.
public  intinDegree(String v)
     Counts the number of incoming arcs (edges) for a given node.
Parameters:
  v - is the vortex name to count incoming edge for.
public  booleanisArc(String v, String w)
     Predicate to check the existence of a directed edge between from v to w.
public  Listneighbors(String v)
     Determines the neighbors of a given node.
public  intorder()
     Counts the number of nodes (vertices) in a graph.
public  intoutDegree(String v)
     Counts the number of outgoing arcs (edges) for a given node.
Parameters:
  v - is the vortex name to count outgoing edge for.
public  voidremoveArc(String v, String w)
     Removes a directed edge between two nodes.
public  voidremoveVertex(String node)
     Removes a vortex from the graph.
public  GraphreverseGraph()
     Constructs the reverse graph by inverting the direction of every arc.
public  intsize()
     Counts the number of directed edges (arcs) in the graph. Undirected edges are counted as two directed edges.
public  StringtoString()
     Generates a simple string representation of the graph.


Constructor Detail
Graph
public Graph()(Code)
Default constructor, call the initialize function



Graph
public Graph(Reader reader)(Code)
Reads a stream representing the graph. The format of the stream is:
 # of vertices 
 vertex adjcency_list_of_the_vertex
 

Parameters:
  reader - is an input file open for reading.




Method Detail
addArc
public void addArc(String v, String w)(Code)
Adds a directed edge between two nodes.
Parameters:
  v - is the source node
Parameters:
  w - is the destination node
See Also:   Graph.removeArc(String,String)



addVertex
public void addVertex(String node)(Code)
Adds a vertex to the adjacency list. The vortex's adjacency list is initialized to an empty list. If the vortex already exists, nothing will be done.
Parameters:
  node - is the name of the vortex to add.
See Also:   Graph.removeVertex(String)



clone
public Object clone()(Code)
Clones the graph using a deep copy.



getVertices
public Iterator getVertices()(Code)
Provides an iterator over the vertices. an initialized iterator to walk all vertices.



inDegree
public int inDegree(String v)(Code)
Counts the number of incoming arcs (edges) for a given node.
Parameters:
  v - is the vortex name to count incoming edge for. the number of incoming edges.
See Also:   Graph.outDegree(String)



isArc
public boolean isArc(String v, String w)(Code)
Predicate to check the existence of a directed edge between from v to w.
Parameters:
  v - is the source node
Parameters:
  w - is the destination node



neighbors
public List neighbors(String v)(Code)
Determines the neighbors of a given node. This is effectively a copy of the node's adjacency list.
Parameters:
  v - is the node to determine the neighbors for a copy of the node's adjacency list.



order
public int order()(Code)
Counts the number of nodes (vertices) in a graph. the number of vertices.



outDegree
public int outDegree(String v)(Code)
Counts the number of outgoing arcs (edges) for a given node.
Parameters:
  v - is the vortex name to count outgoing edge for. the number of outgoing edges.
See Also:   Graph.inDegree(String)



removeArc
public void removeArc(String v, String w)(Code)
Removes a directed edge between two nodes.
Parameters:
  v - is the source node
Parameters:
  w - is the destination node
See Also:   Graph.addArc(String,String)



removeVertex
public void removeVertex(String node)(Code)
Removes a vortex from the graph. This is an expensive function, because the vortex must also be removed from all adjacency lists.
Parameters:
  node - is the name of the vortex to remove.
See Also:   Graph.addVertex(String)



reverseGraph
public Graph reverseGraph()(Code)
Constructs the reverse graph by inverting the direction of every arc. a new graph which is the reverse of the current one.



size
public int size()(Code)
Counts the number of directed edges (arcs) in the graph. Undirected edges are counted as two directed edges. number of directed edges.



toString
public String toString()(Code)
Generates a simple string representation of the graph. The format of the representation is the same as it is read from a stream. a complete graph as a single string
See Also:   Graph.Graph(Reader)



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.