donaldp 2002/06/30 03:32:26
Modified: container/src/java/org/apache/myrmidon/interfaces/executor
ExecutionFrame.java
Log:
Readd and munge javadoc
Revision Changes Path
1.26 +17 -0
jakarta-ant-myrmidon/container/src/java/org/apache/myrmidon/interfaces/executor/ExecutionFrame.java
Index: ExecutionFrame.java
===================================================================
RCS file:
/home/cvs/jakarta-ant-myrmidon/container/src/java/org/apache/myrmidon/interfaces/executor/ExecutionFrame.java,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- ExecutionFrame.java 30 Jun 2002 10:30:47 -0000 1.25
+++ ExecutionFrame.java 30 Jun 2002 10:32:26 -0000 1.26
@@ -44,6 +44,23 @@
TaskContext createTaskContext( String taskName, String location )
throws TaskException;
+ /**
+ * Create a child execution frame. The name of child frame
+ * is this frame's name concaternated with "/" and the
+ * specified name.
+ *
+ * <p>If partition is true then this frame is considered a
+ * partitioning frame. A partitioning frame is one which
+ * creates child instances of certain scoped data stores. These scoped
+ * stores will inherit values from the parent object but any
modifications
+ * (ie additions or removals) will be local to this frame
+ * (and child frames).</p>
+ *
+ * @param name the name of child frame relative to this frame.
+ * @param baseDirectory the directory from which the child frame
operates.
+ * If null will use this frame's base directory.
+ * @return the new child ExecutionFrame.
+ */
ExecutionFrame createPartition( String name, File baseDirectory );
ExecutionFrame createChildFrame( String name );
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>