ovidiu 02/04/18 23:57:28
Modified: src/scratchpad/schecoon/src/org/apache/cocoon/components/flow
Interpreter.java
Log:
Removed the dependency on InvokeContext.
Revision Changes Path
1.11 +3 -8
xml-cocoon2/src/scratchpad/schecoon/src/org/apache/cocoon/components/flow/Interpreter.java
Index: Interpreter.java
===================================================================
RCS file:
/home/cvs/xml-cocoon2/src/scratchpad/schecoon/src/org/apache/cocoon/components/flow/Interpreter.java,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- Interpreter.java 10 Apr 2002 00:36:09 -0000 1.10
+++ Interpreter.java 19 Apr 2002 06:57:28 -0000 1.11
@@ -3,7 +3,6 @@
import java.util.List;
import java.util.Map;
import org.apache.cocoon.components.treeprocessor.CategoryNode;
-import org.apache.cocoon.components.treeprocessor.InvokeContext;
import org.apache.cocoon.environment.Environment;
import org.apache.cocoon.environment.Source;
@@ -139,10 +138,8 @@
* parameters is left to the actual implementation of the
* interpreter.
* @param env an <code>Environment</code> value
- * @param ctx an <code>InvokeContext</code> value
*/
- void callFunction(String funName, List params,
- Environment env, InvokeContext ctx)
+ void callFunction(String funName, List params, Environment env)
throws Exception;
/**
@@ -154,12 +151,11 @@
* @param continuation a <code>WebContinuation</code>, the
* continuation to be called to resume the processing
* @param environment an <code>Environment</code>, the Cocoon environment
- * @param ctx an <code>InvokeContext</code>, the TreeProcessor
* invocation context.
* @exception Exception if an error occurs
*/
void forwardTo(String uri, Object bizData, WebContinuation continuation,
- Environment environment, InvokeContext ctx)
+ Environment environment)
throws Exception;
/**
@@ -176,11 +172,10 @@
* environment, if at all.
*
* @param environment an <code>Environment</code> value
- * @param ctx an <code>InvokeContext</code> value
* @exception Exception if an error occurs
*/
void handleContinuation(String continuationId, List params,
- Environment environment, InvokeContext ctx)
+ Environment environment)
throws Exception;
/**
----------------------------------------------------------------------
In case of troubles, e-mail: [EMAIL PROTECTED]
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]