Android Open Source - splott Surface Listener






From Project

Back to project page splott.

License

The source code is released under:

MIT License

If you think the Android project splott listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

// Generated from Surface.g4 by ANTLR 4.2.2
/*from  w  w  w  .j  a  va  2  s  .  co  m*/
package com.wordsaretoys.splott.parser;

import org.antlr.v4.runtime.misc.NotNull;
import org.antlr.v4.runtime.tree.ParseTreeListener;

/**
 * This interface defines a complete listener for a parse tree produced by
 * {@link SurfaceParser}.
 */
public interface SurfaceListener extends ParseTreeListener {
  /**
   * Enter a parse tree produced by {@link SurfaceParser#muldivExpr}.
   * @param ctx the parse tree
   */
  void enterMuldivExpr(@NotNull SurfaceParser.MuldivExprContext ctx);
  /**
   * Exit a parse tree produced by {@link SurfaceParser#muldivExpr}.
   * @param ctx the parse tree
   */
  void exitMuldivExpr(@NotNull SurfaceParser.MuldivExprContext ctx);

  /**
   * Enter a parse tree produced by {@link SurfaceParser#surface}.
   * @param ctx the parse tree
   */
  void enterSurface(@NotNull SurfaceParser.SurfaceContext ctx);
  /**
   * Exit a parse tree produced by {@link SurfaceParser#surface}.
   * @param ctx the parse tree
   */
  void exitSurface(@NotNull SurfaceParser.SurfaceContext ctx);

  /**
   * Enter a parse tree produced by {@link SurfaceParser#numExpr}.
   * @param ctx the parse tree
   */
  void enterNumExpr(@NotNull SurfaceParser.NumExprContext ctx);
  /**
   * Exit a parse tree produced by {@link SurfaceParser#numExpr}.
   * @param ctx the parse tree
   */
  void exitNumExpr(@NotNull SurfaceParser.NumExprContext ctx);

  /**
   * Enter a parse tree produced by {@link SurfaceParser#equalsExpr}.
   * @param ctx the parse tree
   */
  void enterEqualsExpr(@NotNull SurfaceParser.EqualsExprContext ctx);
  /**
   * Exit a parse tree produced by {@link SurfaceParser#equalsExpr}.
   * @param ctx the parse tree
   */
  void exitEqualsExpr(@NotNull SurfaceParser.EqualsExprContext ctx);

  /**
   * Enter a parse tree produced by {@link SurfaceParser#varExpr}.
   * @param ctx the parse tree
   */
  void enterVarExpr(@NotNull SurfaceParser.VarExprContext ctx);
  /**
   * Exit a parse tree produced by {@link SurfaceParser#varExpr}.
   * @param ctx the parse tree
   */
  void exitVarExpr(@NotNull SurfaceParser.VarExprContext ctx);

  /**
   * Enter a parse tree produced by {@link SurfaceParser#parensExpr}.
   * @param ctx the parse tree
   */
  void enterParensExpr(@NotNull SurfaceParser.ParensExprContext ctx);
  /**
   * Exit a parse tree produced by {@link SurfaceParser#parensExpr}.
   * @param ctx the parse tree
   */
  void exitParensExpr(@NotNull SurfaceParser.ParensExprContext ctx);

  /**
   * Enter a parse tree produced by {@link SurfaceParser#funcExpr}.
   * @param ctx the parse tree
   */
  void enterFuncExpr(@NotNull SurfaceParser.FuncExprContext ctx);
  /**
   * Exit a parse tree produced by {@link SurfaceParser#funcExpr}.
   * @param ctx the parse tree
   */
  void exitFuncExpr(@NotNull SurfaceParser.FuncExprContext ctx);

  /**
   * Enter a parse tree produced by {@link SurfaceParser#uminusExpr}.
   * @param ctx the parse tree
   */
  void enterUminusExpr(@NotNull SurfaceParser.UminusExprContext ctx);
  /**
   * Exit a parse tree produced by {@link SurfaceParser#uminusExpr}.
   * @param ctx the parse tree
   */
  void exitUminusExpr(@NotNull SurfaceParser.UminusExprContext ctx);

  /**
   * Enter a parse tree produced by {@link SurfaceParser#addsubExpr}.
   * @param ctx the parse tree
   */
  void enterAddsubExpr(@NotNull SurfaceParser.AddsubExprContext ctx);
  /**
   * Exit a parse tree produced by {@link SurfaceParser#addsubExpr}.
   * @param ctx the parse tree
   */
  void exitAddsubExpr(@NotNull SurfaceParser.AddsubExprContext ctx);

  /**
   * Enter a parse tree produced by {@link SurfaceParser#expExpr}.
   * @param ctx the parse tree
   */
  void enterExpExpr(@NotNull SurfaceParser.ExpExprContext ctx);
  /**
   * Exit a parse tree produced by {@link SurfaceParser#expExpr}.
   * @param ctx the parse tree
   */
  void exitExpExpr(@NotNull SurfaceParser.ExpExprContext ctx);
}




Java Source Code List

com.wordsaretoys.rise.geometry.Camera.java
com.wordsaretoys.rise.geometry.Geom.java
com.wordsaretoys.rise.geometry.Mote.java
com.wordsaretoys.rise.geometry.Ortho.java
com.wordsaretoys.rise.geometry.Quaternion.java
com.wordsaretoys.rise.geometry.Vector.java
com.wordsaretoys.rise.glwrapper.Mesh.java
com.wordsaretoys.rise.glwrapper.Shader.java
com.wordsaretoys.rise.glwrapper.Texture.java
com.wordsaretoys.rise.meshutil.HeightMapper.java
com.wordsaretoys.rise.meshutil.IndexBuffer.java
com.wordsaretoys.rise.meshutil.SurfaceMapper.java
com.wordsaretoys.rise.meshutil.VertexBuffer.java
com.wordsaretoys.rise.meshutil.Vindexer.java
com.wordsaretoys.rise.pattern.Bitmap.java
com.wordsaretoys.rise.pattern.F2FSumMap.java
com.wordsaretoys.rise.pattern.I2FCutMap.java
com.wordsaretoys.rise.pattern.I2FMap.java
com.wordsaretoys.rise.pattern.I2IMap.java
com.wordsaretoys.rise.pattern.Pattern.java
com.wordsaretoys.rise.pattern.Ring.java
com.wordsaretoys.rise.utility.Asset.java
com.wordsaretoys.rise.utility.Board.java
com.wordsaretoys.rise.utility.Dbg.java
com.wordsaretoys.rise.utility.Interval.java
com.wordsaretoys.rise.utility.Misc.java
com.wordsaretoys.rise.utility.Needle.java
com.wordsaretoys.splott.MainActivity.java
com.wordsaretoys.splott.parser.Compiler.java
com.wordsaretoys.splott.parser.SurfaceBaseListener.java
com.wordsaretoys.splott.parser.SurfaceLexer.java
com.wordsaretoys.splott.parser.SurfaceListener.java
com.wordsaretoys.splott.parser.SurfaceParser.java
com.wordsaretoys.splott.parser.SyntaxChecker.java
com.wordsaretoys.splott.parser.Vm.java
com.wordsaretoys.splott.plotter.GlView.java
com.wordsaretoys.splott.plotter.Render.java
com.wordsaretoys.splott.plotter.Surface.java