Uses of Class
edu.hws.jcm.functions.TableFunction

Packages that use TableFunction
data   
edu.hws.jcm.functions   
 

Uses of TableFunction in data
 

Subclasses of TableFunction in data
 class StandardNormalTable
          StandardNormalTable This class manage a reduced centered normal law table.
 

Uses of TableFunction in edu.hws.jcm.functions
 

Methods in edu.hws.jcm.functions that return TableFunction
 TableFunction TableFunctionInput.copyOfCurrentFunction()
          Create a new TableFunction containing the data that is currently in the TableFunctionInput panel, and return a pointer to that new function.
 TableFunction TableFunctionInput.finishEdit()
          If an edit function has been specified (by startEdit()), this function copies the data form the TableFunctionInput into that function, and returns a pointer to that function.
 TableFunction TableFunctionGraph.getFunction()
          Get the TableFunction whose graph is drawn by this TableFunctionGraph.
 

Methods in edu.hws.jcm.functions with parameters of type TableFunction
 void TableFunction.copyDataFrom(TableFunction source)
          Copy data from another TableFunction, except that the name of the funcion is not duplicated.
 void TableFunctionGraph.setFunction(TableFunction function)
          Set the function whose graph is drawn by this TableFunctionGraph.
 void TableFunctionInput.startEdit(TableFunction f)
          Install a function to be edited.
 

Constructors in edu.hws.jcm.functions with parameters of type TableFunction
TableFunctionGraph(TableFunction function)
          Create a TableFunctionGraph to draw the specified TableFunction.