Uses of Interface
net.sourceforge.webcompmath.data.ExpressionCommand

Packages that use ExpressionCommand
net.sourceforge.webcompmath.awt.beans   
net.sourceforge.webcompmath.data   
net.sourceforge.webcompmath.data.beans   
net.sourceforge.webcompmath.draw.beans   
net.sourceforge.webcompmath.functions   
net.sourceforge.webcompmath.functions.beans   
 

Uses of ExpressionCommand in net.sourceforge.webcompmath.awt.beans
 

Classes in net.sourceforge.webcompmath.awt.beans that implement ExpressionCommand
 class WCMExpressionInputBean
          This class is primarily for use with GUI builders like Eclipse VE.
 

Uses of ExpressionCommand in net.sourceforge.webcompmath.data
 

Classes in net.sourceforge.webcompmath.data that implement ExpressionCommand
 class ConditionalExpression
          A "conditional expression" is an expression using the ? operator.
 class Constant
          A Constant is a Value that represents a constant real number.
 class Variable
          A Variable is a Value object whose value can be changed.
 

Methods in net.sourceforge.webcompmath.data with parameters of type ExpressionCommand
 void ExpressionProgram.addCommandObject(ExpressionCommand com)
          Adds com as the next command in the program.
 

Uses of ExpressionCommand in net.sourceforge.webcompmath.data.beans
 

Classes in net.sourceforge.webcompmath.data.beans that implement ExpressionCommand
 class WCMConstantBean
           
 class WCMVariableBean
          This class is for use with GUI builders.
 

Uses of ExpressionCommand in net.sourceforge.webcompmath.draw.beans
 

Classes in net.sourceforge.webcompmath.draw.beans that implement ExpressionCommand
 class WCMMouseVariableBean
          This class is a convenience class used when creating applications via a GUI builder.
 

Uses of ExpressionCommand in net.sourceforge.webcompmath.functions
 

Classes in net.sourceforge.webcompmath.functions that implement ExpressionCommand
 class ExpressionFunction
          An ExpressionFunction is a Function that is created from an expression and a list of variables that serve as the parameter(s) of the function.
 class FunctionParserExtension
          An object belonging to a concrete subclass of FunctionParserExtesion is a mathematical function that can be registered with a Parser and then used in strings that are parsed by that parser.
 class TableFunction
          A TableFunction is a function that is specified by a table of (x,y)-points.
 class WrapperFunction
          A WrapperFunction contains another function and delegates to it all calls to methods from the Function interface, except for calls to setName() and getName().
 

Uses of ExpressionCommand in net.sourceforge.webcompmath.functions.beans
 

Classes in net.sourceforge.webcompmath.functions.beans that implement ExpressionCommand
 class WCMDerivativeBean
          This class is used with GUI builders to create an object that is the derivative of some function.
 class WCMExpressionFunctionBean
          This bean extends ExpressionFunction.
 class WCMTableFunctionBean
          This bean implements a TableFunction.