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

Packages that use ParserExtension
net.sourceforge.webcompmath.awt   
net.sourceforge.webcompmath.awt.beans   
net.sourceforge.webcompmath.functions   
net.sourceforge.webcompmath.functions.beans   
 

Uses of ParserExtension in net.sourceforge.webcompmath.awt
 

Classes in net.sourceforge.webcompmath.awt that implement ParserExtension
 class DataTableInput
          A DataTableInput lets the user input a grid of real numbers arranged in rows and columns.
 

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

Classes in net.sourceforge.webcompmath.awt.beans that implement ParserExtension
 class WCMDataTableInputBean
          This class extends DataTableInput to make it easier to use in GUI builder environments.
 class WCMExpressionInputBean
          This class is primarily for use with GUI builders like Eclipse VE.
 

Uses of ParserExtension in net.sourceforge.webcompmath.functions
 

Classes in net.sourceforge.webcompmath.functions that implement ParserExtension
 class DerivParser
          The DerivParser class makes it possible to use symbolic derivatives such as Deriv(x,0,x^2) in a Parser.
 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 NumDerivParser
          The NumDerivParser class makes it possible to use numerical derivatives such as numDeriv(x,0,x^2) in a Parser.
 class NumIntParser
          The NumIntParser class makes it possible to use numerical definite integrals, such as numInt(xx,0,5,xx^2) in a Parser.
 class NumMinMaxParser
          The NumMinMaxParser class makes it possible to use numerical minimums and maximums, such as numMin(xx,0,5,xx^2) in a Parser.
 class SummationParser
          The SummationParser class makes it possible to use summations such as sum(i,1,5,x^i) in a 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 ParserExtension in net.sourceforge.webcompmath.functions.beans
 

Classes in net.sourceforge.webcompmath.functions.beans that implement ParserExtension
 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.