ContinueStatement.java :  » Scripting » oscript-2.10.4 » oscript » syntaxtree » Java Open Source

Java Open Source » Scripting » oscript 2.10.4 
oscript 2.10.4 » oscript » syntaxtree » ContinueStatement.java
//
// Generated by JTB 1.2.1
//

package oscript.syntaxtree;

/**
 * Grammar production:
 * <PRE>
 * f0 -> "continue"
 * f1 -> ";"
 * </PRE>
 */
public class ContinueStatement implements Node {
   public NodeToken f0;
   public NodeToken f1;

   public ContinueStatement(NodeToken n0, NodeToken n1) {
      f0 = n0;
      f1 = n1;
   }

   public ContinueStatement() {
      f0 = new NodeToken("continue");
      f1 = new NodeToken(";");
   }

   public void accept(oscript.visitor.Visitor v) {
      v.visit(this);
   }
   public Object accept(oscript.visitor.ObjectVisitor v, Object argu) {
      return v.visit(this,argu);
   }
}

java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.