[Mathlib-commitlog] SF.net SVN: mathlib:[764] JMathLib/trunk/src/jmathlib/core/tokens/ NumberToken.
Status: Beta
Brought to you by:
st_mueller
|
From: <st_...@us...> - 2009-01-24 20:21:41
|
Revision: 764
http://mathlib.svn.sourceforge.net/mathlib/?rev=764&view=rev
Author: st_mueller
Date: 2009-01-24 20:21:39 +0000 (Sat, 24 Jan 2009)
Log Message:
-----------
changed signature of evaluate(Token[] operands)
to
evaluate(Token[] operands, GlobalValues globals)
Modified Paths:
--------------
JMathLib/trunk/src/jmathlib/core/tokens/NumberToken.java
Modified: JMathLib/trunk/src/jmathlib/core/tokens/NumberToken.java
===================================================================
--- JMathLib/trunk/src/jmathlib/core/tokens/NumberToken.java 2009-01-24 20:18:33 UTC (rev 763)
+++ JMathLib/trunk/src/jmathlib/core/tokens/NumberToken.java 2009-01-24 20:21:39 UTC (rev 764)
@@ -18,7 +18,7 @@
* 2
* 4 */
/**stores the number format for displaying the number*/
- private static NumberFormat numFormat = NumberFormat.getInstance();
+ protected static NumberFormat numFormat = NumberFormat.getInstance();
/**Index for real values within array*/
protected static final int REAL = 0;
@@ -115,7 +115,7 @@
}
/**Evaluate the token. This causes it to return itself*/
- public OperandToken evaluate(Token[] operands)
+ public OperandToken evaluate(Token[] operands, GlobalValues globals)
{
return this;
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|