[Mathlib-commitlog] SF.net SVN: mathlib:[783] JMathLib/trunk/src/jmathlib/core/interpreter
Status: Beta
Brought to you by:
st_mueller
|
From: <st_...@us...> - 2009-01-26 19:49:22
|
Revision: 783
http://mathlib.svn.sourceforge.net/mathlib/?rev=783&view=rev
Author: st_mueller
Date: 2009-01-26 19:49:18 +0000 (Mon, 26 Jan 2009)
Log Message:
-----------
added more comments
Modified Paths:
--------------
JMathLib/trunk/src/jmathlib/core/interpreter/Context.java
JMathLib/trunk/src/jmathlib/core/interpreter/ContextList.java
Modified: JMathLib/trunk/src/jmathlib/core/interpreter/Context.java
===================================================================
--- JMathLib/trunk/src/jmathlib/core/interpreter/Context.java 2009-01-26 19:47:27 UTC (rev 782)
+++ JMathLib/trunk/src/jmathlib/core/interpreter/Context.java 2009-01-26 19:49:18 UTC (rev 783)
@@ -1,6 +1,14 @@
+/*
+ * This file is part or JMathLib
+ *
+ * Check it out at http://www.jmathlib.de
+ *
+ * Author:
+ * (c) 2002-2009
+ */
+
package jmathlib.core.interpreter;
-//import MathLib.Tokens.*;
/**A context object contains the variables and code for the executing function*/
public class Context implements java.io.Serializable
@@ -11,8 +19,6 @@
/**Reference to the contexts calling context*/
private Context parent;
- /**The name of the function that defined this context, used for diagnostics*/
- //private String functionName;
/**Create a Context with an empty variable list, used to construct the global context*/
public Context()
@@ -22,8 +28,9 @@
}
/**Create a Context with the supplied values
- @param _variables = the variable list of the new context
- @param _parent = the calling context*/
+ * @param _variables = the variable list of the new context
+ * @param _parent = the calling context
+ */
public Context(VariableList _variables, Context _parent)
{
variables = _variables;
Modified: JMathLib/trunk/src/jmathlib/core/interpreter/ContextList.java
===================================================================
--- JMathLib/trunk/src/jmathlib/core/interpreter/ContextList.java 2009-01-26 19:47:27 UTC (rev 782)
+++ JMathLib/trunk/src/jmathlib/core/interpreter/ContextList.java 2009-01-26 19:49:18 UTC (rev 783)
@@ -1,3 +1,12 @@
+/*
+ * This file is part or JMathLib
+ *
+ * Check it out at http://www.jmathlib.de
+ *
+ * Author:
+ * (c) 2002-2009
+ */
+
package jmathlib.core.interpreter;
import jmathlib.core.tokens.OperandToken;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|