From: erik Date: Fri, 16 May 2008 18:15:25 +0000 (+0000) Subject: (no commit message) X-Git-Tag: wamblee-utils-0.2~1^2~102 X-Git-Url: http://wamblee.org/gitweb/?a=commitdiff_plain;h=4ef48e5e7d6526b746f7df0be75ddb0cc5b9d1ef;p=utils --- diff --git a/system/general/src/main/java/org/wamblee/system/graph/component/package-info.java b/system/general/src/main/java/org/wamblee/system/graph/component/package-info.java new file mode 100644 index 00000000..f886d788 --- /dev/null +++ b/system/general/src/main/java/org/wamblee/system/graph/component/package-info.java @@ -0,0 +1,31 @@ +/** + *

Graph component package

+ * + * The graph component package provides the representation of a number of + * components {@link Component} + * their required and provided interfaces ({@link RequiredInterface} and + * {@link ProvidedInterface}), and how these are connected together. + * + * This package provides the bridge between the component model and the + * representation of the components and their connections in a graph. + * The component package provides various algorithms, filters, and + * validations that are required for the implementation of a container. + * + * The main abstractions are: + * + * + */ +package org.wamblee.system.graph.component; + +import org.wamblee.system.core.Component; +import org.wamblee.system.core.ProvidedInterface; +import org.wamblee.system.core.RequiredInterface; + 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 index 00000000..6a2318ec --- /dev/null +++ b/system/general/src/main/java/org/wamblee/system/graph/package-info.java @@ -0,0 +1,20 @@ +/** + *

Graph package

+ * + * 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: + * + */ +package org.wamblee.system.graph; \ No newline at end of file