ovidiu      02/03/23 23:40:17

  Modified:    src/scratchpad/schecoon/src/org/apache/cocoon/components/flow/javascript
                        JSWebContinuation.java
  Log:
  Added method to retrieve the stored WebContinuation object.
  
  Revision  Changes    Path
  1.2       +7 -2      
xml-cocoon2/src/scratchpad/schecoon/src/org/apache/cocoon/components/flow/javascript/JSWebContinuation.java
  
  Index: JSWebContinuation.java
  ===================================================================
  RCS file: 
/home/cvs/xml-cocoon2/src/scratchpad/schecoon/src/org/apache/cocoon/components/flow/javascript/JSWebContinuation.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- JSWebContinuation.java    21 Mar 2002 23:24:36 -0000      1.1
  +++ JSWebContinuation.java    24 Mar 2002 07:40:17 -0000      1.2
  @@ -11,14 +11,19 @@
   
   public class JSWebContinuation extends ScriptableObject
   {
  -  WebContinuation wk;
  -  ContinuationsManager continuationsMgr;
  +  protected WebContinuation wk;
  +  protected ContinuationsManager continuationsMgr;
   
     public JSWebContinuation() {}
   
     public String getClassName()
     {
       return "WebContinuation";
  +  }
  +
  +  public WebContinuation getWebContinuation()
  +  {
  +    return wk;
     }
   
     public static Scriptable jsConstructor(Context cx, Object[] args,
  
  
  

----------------------------------------------------------------------
In case of troubles, e-mail:     [EMAIL PROTECTED]
To unsubscribe, e-mail:          [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to