summaryrefslogtreecommitdiff
path: root/src/main/java/com
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/com')
-rw-r--r--src/main/java/com/c2kernel/events/package-info.java9
-rw-r--r--src/main/java/com/c2kernel/graph/package-info.java9
-rw-r--r--src/main/java/com/c2kernel/lifecycle/package-info.java10
3 files changed, 28 insertions, 0 deletions
diff --git a/src/main/java/com/c2kernel/events/package-info.java b/src/main/java/com/c2kernel/events/package-info.java
new file mode 100644
index 0000000..48b6e1b
--- /dev/null
+++ b/src/main/java/com/c2kernel/events/package-info.java
@@ -0,0 +1,9 @@
+/**
+ * Events are generated and stored whenever a step in an Item's lifecycle
+ * changes state, and provide a full record of what was done, when, and by whom.
+ *
+ * <p>The History object is an instance of {@link RemoteMap} which provides a
+ * live view onto the Events of an Item.
+ */
+
+package com.c2kernel.events; \ No newline at end of file
diff --git a/src/main/java/com/c2kernel/graph/package-info.java b/src/main/java/com/c2kernel/graph/package-info.java
new file mode 100644
index 0000000..3039850
--- /dev/null
+++ b/src/main/java/com/c2kernel/graph/package-info.java
@@ -0,0 +1,9 @@
+/**
+ * The GraphModel framework is used by the Workflow and Aggregation collection
+ * for their layout. Although the cristal-gui module uses the java.2d graphics
+ * framework to draw graphs, the Graph package itself contains no UI information
+ * beyond x, y, width and height.
+ *
+ */
+
+package com.c2kernel.graph; \ No newline at end of file
diff --git a/src/main/java/com/c2kernel/lifecycle/package-info.java b/src/main/java/com/c2kernel/lifecycle/package-info.java
new file mode 100644
index 0000000..59aac2c
--- /dev/null
+++ b/src/main/java/com/c2kernel/lifecycle/package-info.java
@@ -0,0 +1,10 @@
+/**
+ * The implementation of the Item lifecycle, as composite workflows.
+ *
+ * <p>This package contains the activity description implementations. The
+ * workflow instance is in the {@link com.c2kernel.lifecycle.instance}
+ * subpackage, which also contains the predefined steps.
+ *
+ */
+
+package com.c2kernel.lifecycle; \ No newline at end of file