Uses of Class
edu.neu.ccs.parser.AbstractParser.Procedure

Packages that use AbstractParser.Procedure
edu.neu.ccs.parser Provides classes for translating Strings into values of various data types using languages with simple lexical and syntactic structures. 
 

Uses of AbstractParser.Procedure in edu.neu.ccs.parser
 

Fields in edu.neu.ccs.parser declared as AbstractParser.Procedure
protected  AbstractParser.Procedure JPTParser.procAbs
          Procedure to implement abs.
protected  AbstractParser.Procedure JPTParser.procCeiling
          Procedure to implement ceiling.
protected  AbstractParser.Procedure JPTParser.procFloor
          Procedure to implement floor.
protected  AbstractParser.Procedure JPTParser.procRound
          Procedure to implement round.
protected  AbstractParser.Procedure JPTParser.procMax
          Procedure to implement max.
protected  AbstractParser.Procedure JPTParser.procMin
          Procedure to implement min.
protected  AbstractParser.Procedure JPTParser.procSqrt
          Procedure to implement sqrt.
protected  AbstractParser.Procedure JPTParser.procPower
          Procedure to implement power.
protected  AbstractParser.Procedure JPTParser.procToDegrees
          Procedure to implement todegrees.
protected  AbstractParser.Procedure JPTParser.procToRadians
          Procedure to implement toradians.
protected  AbstractParser.Procedure JPTParser.procSin
          Procedure to implement sin.
protected  AbstractParser.Procedure JPTParser.procSinDeg
          Procedure to implement sindeg.
protected  AbstractParser.Procedure JPTParser.procCos
          Procedure to implement cos.
protected  AbstractParser.Procedure JPTParser.procCosDeg
          Procedure to implement cosdeg.
protected  AbstractParser.Procedure JPTParser.procTan
          Procedure to implement tan.
protected  AbstractParser.Procedure JPTParser.procTanDeg
          Procedure to implement tandeg.
protected  AbstractParser.Procedure JPTParser.procASin
          Procedure to implement asin.
protected  AbstractParser.Procedure JPTParser.procASinDeg
          Procedure to implement asindeg.
protected  AbstractParser.Procedure JPTParser.procACos
          Procedure to implement acos.
protected  AbstractParser.Procedure JPTParser.procACosDeg
          Procedure to implement acosdeg.
protected  AbstractParser.Procedure JPTParser.procATan
          Procedure to implement atan.
protected  AbstractParser.Procedure JPTParser.procATanDeg
          Procedure to implement atandeg.
protected  AbstractParser.Procedure JPTParser.procATan2
          Procedure to implement atan2.
protected  AbstractParser.Procedure JPTParser.procATan2Deg
          Procedure to implement atan2deg.
protected  AbstractParser.Procedure JPTParser.procExp
          Procedure to implement exp.
protected  AbstractParser.Procedure JPTParser.procLn
          Procedure to implement ln.
protected  AbstractParser.Procedure JPTParser.procLog
          Procedure to implement log.
protected  AbstractParser.Procedure JPTParser.procLogToBase
          Procedure to implement logtobase.
protected  AbstractParser.Procedure JPTParser.procRandom
          Procedure to implement random.
 

Methods in edu.neu.ccs.parser with parameters of type AbstractParser.Procedure
 void AbstractParser.addProcedure(AbstractParser.Procedure proc)
          Adds the given procedure to the table of recognized procedures.