summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Branson <andrew.branson@cern.ch>2014-09-29 12:37:07 +0200
committerAndrew Branson <andrew.branson@cern.ch>2014-09-29 12:37:07 +0200
commit25e0517ffc1db85e2f89318abbec9b5202bb43c0 (patch)
treec35361b5501ef6c5c9762d5d0a649a76ad0acb76
parentb305b9ae7e44ce00d947b44f9cc516cac74f6d70 (diff)
More package docs
-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