You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by lu...@apache.org on 2002/07/25 00:00:12 UTC

cvs commit: jakarta-tomcat-jasper/jasper2/src/share/org/apache/jasper/compiler Node.java

luehe       2002/07/24 15:00:11

  Modified:    jasper2/src/share/org/apache/jasper/compiler Node.java
  Log:
  Added node types for <jsp:invoke> and <jsp:doBody> actions
  
  Revision  Changes    Path
  1.21      +41 -3     jakarta-tomcat-jasper/jasper2/src/share/org/apache/jasper/compiler/Node.java
  
  Index: Node.java
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-jasper/jasper2/src/share/org/apache/jasper/compiler/Node.java,v
  retrieving revision 1.20
  retrieving revision 1.21
  diff -u -r1.20 -r1.21
  --- Node.java	22 Jul 2002 20:35:27 -0000	1.20
  +++ Node.java	24 Jul 2002 22:00:10 -0000	1.21
  @@ -445,6 +445,34 @@
       }
   
       /**
  +     * Represents a <jsp:invoke> tag file action
  +     */
  +    public static class InvokeAction extends Node {
  +
  +	public InvokeAction(Attributes attrs, Mark start, Node parent) {
  +	    super(attrs, start, parent);
  +	}
  +
  +	public void accept(Visitor v) throws JasperException {
  +	    v.visit(this);
  +	}
  +    }
  +
  +    /**
  +     * Represents a <jsp:doBody> tag file action
  +     */
  +    public static class DoBodyAction extends Node {
  +
  +	public DoBodyAction(Attributes attrs, Mark start, Node parent) {
  +	    super(attrs, start, parent);
  +	}
  +
  +	public void accept(Visitor v) throws JasperException {
  +	    v.visit(this);
  +	}
  +    }
  +
  +    /**
        * Represents a Jsp comment
        * Comments are kept for completeness.
        */
  @@ -1592,6 +1620,16 @@
           }
   
           public void visit(JspBody n) throws JasperException {
  +            doVisit(n);
  +            visitBody(n);
  +        }
  +
  +        public void visit(InvokeAction n) throws JasperException {
  +            doVisit(n);
  +            visitBody(n);
  +        }
  +
  +        public void visit(DoBodyAction n) throws JasperException {
               doVisit(n);
               visitBody(n);
           }
  
  
  

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