You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by ki...@apache.org on 2002/08/08 23:16:23 UTC

cvs commit: jakarta-servletapi-5/src/share/javax/servlet/jsp JspContext.java

kinman      2002/08/08 14:16:23

  Modified:    src/share/javax/servlet/jsp JspContext.java
  Log:
  - Oops!  Forgot this one.
  
  Revision  Changes    Path
  1.2       +0 -46     jakarta-servletapi-5/src/share/javax/servlet/jsp/JspContext.java
  
  Index: JspContext.java
  ===================================================================
  RCS file: /home/cvs/jakarta-servletapi-5/src/share/javax/servlet/jsp/JspContext.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- JspContext.java	16 Jul 2002 16:38:41 -0000	1.1
  +++ JspContext.java	8 Aug 2002 21:16:23 -0000	1.2
  @@ -77,12 +77,6 @@
    *     scripting environment
    * </ul>
    *
  - * <p><B>Methods Intended for Container Generated Code</B>
  - * <p>
  - * To facilitate Simple Tag Extensions, the <code>pushPageScope()</code>,
  - * <code>popPageScope()</code> and <code>peekPageScope()</code> methods are
  - * added.
  - *
    * <p><B>Methods Intended for JSP authors</B>
    * <p>
    * The following methods provide <B>convenient access</B> to implicit objects:
  @@ -226,46 +220,6 @@
   
       abstract public JspWriter getOut();
   
  -    /** 
  -     * Pops the page scope from the stack. After calling this method, the 
  -     * PageScope will appear the same as it was before the last call to 
  -     * pushPageScope. 
  -     * 
  -     * @return A Map representing the state of the page scope just before 
  -     *     it was popped.  This object can be passed to pushPageScope to 
  -     *     restore this state.  The keys of the returned Map are Strings 
  -     *     representing attribute names.  The values are the values of 
  -     *     those attributes. 
  -     * @throws java.util.EmptyStackException if this is the last page scope on the
  -     *     stack.
  -     */ 
  -    public abstract java.util.Map popPageScope() 
  -        throws java.util.EmptyStackException;
  -
  -    /** 
  -     * Pushes a page scope on the stack.  The scopeState cannot be arbitrary.
  -     * Only a page scope returned from popPageScope() or peekPageScope() may 
  -     * be passed in.
  -     *
  -     * @param scopeState If null, a new, empty, page scope is pushed. 
  -     *     Otherwise, the state of the page scope is restored to the 
  -     *     contents of the provided Map. 
  -     */ 
  -    public abstract void pushPageScope( java.util.Map scopeState );
  -    
  -    /** 
  -     * Peeks at the top element of the page scope stack.  This value is 
  -     * the current state of the page scope.  Does not modify the state of 
  -     * the stack or copy any objects. 
  -     * 
  -     * @return A Map representing the state of the page scope currently 
  -     *     at the top of the stack.  This object can be passed to 
  -     *     pushPageScope to restore this state.  The keys of the returned 
  -     *     Map are Strings representing attribute names.  The values are 
  -     *     the values of those attributes. 
  -     */ 
  -    public abstract java.util.Map peekPageScope();
  -    
       /**
        * Provides programmatic access to the ExpressionEvaluator.
        * The JSP Container must return a valid instance of an 
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>