(no commit message)
[utils] / system / general / src / main / java / org / wamblee / system / graph / package-info.java
diff --git a/system/general/src/main/java/org/wamblee/system/graph/package-info.java b/system/general/src/main/java/org/wamblee/system/graph/package-info.java
new file mode 100644 (file)
index 0000000..6a2318e
--- /dev/null
@@ -0,0 +1,20 @@
+/**
+ * <h1>Graph package</h1>
+ * 
+ * The graph package provides a general very simple abstraction of a graph. 
+ * It was developed for the IOC container to represent dependences between 
+ * components through their required and provided interfaces.
+ * 
+ * The graph package supports a number of simple graph traversal operations, graph
+ * extension operations, and a visitor pattern. 
+ * 
+ * The main abstractions are: 
+ * <ul>
+ *    <li> {@link Graph}: The graph itself. </li> 
+ *    <li> {@link Node}: A node of a graph. </li>
+ *    <li> {@link Edge}: An edge of a graph> </li>
+ *    <li> {@link Visitor}: A visitor for implementing various operations on a graph. </li>
+ *    <li> {@link EdgeFactory}: For extending the graph with new edges </li>
+ * </ul>
+ */
+package org.wamblee.system.graph;
\ No newline at end of file