All Downloads are FREE. Search and download functionalities are using the official Maven repository.

javacc-7.0.3.examples.JavaGrammars.1.5.MyToken Maven / Gradle / Ivy

There is a newer version: 7.0.13
Show newest version
public class MyToken extends Token
{
  /**
   * Constructs a new token for the specified Image and Kind.
   */
  public MyToken(int kind, String image)
  {
     this.kind = kind;
     this.image = image;
  }

  int realKind = JavaParserConstants.GT;

  /**
   * Returns a new Token object.
  */

  public static final Token newToken(int ofKind, String tokenImage)
  {
    return new MyToken(ofKind, tokenImage);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy