[Mathlib-commitlog] SF.net SVN: mathlib:[832] JMathLib/trunk/src/jmathlib/core/interpreter
Status: Beta
Brought to you by:
st_mueller
|
From: <st_...@us...> - 2009-02-05 22:29:14
|
Revision: 832
http://mathlib.svn.sourceforge.net/mathlib/?rev=832&view=rev
Author: st_mueller
Date: 2009-02-05 21:39:14 +0000 (Thu, 05 Feb 2009)
Log Message:
-----------
Modified Paths:
--------------
JMathLib/trunk/src/jmathlib/core/interpreter/ControlException.java
JMathLib/trunk/src/jmathlib/core/interpreter/ErrorLogger.java
Modified: JMathLib/trunk/src/jmathlib/core/interpreter/ControlException.java
===================================================================
--- JMathLib/trunk/src/jmathlib/core/interpreter/ControlException.java 2009-02-04 19:52:35 UTC (rev 831)
+++ JMathLib/trunk/src/jmathlib/core/interpreter/ControlException.java 2009-02-05 21:39:14 UTC (rev 832)
@@ -1,3 +1,11 @@
+/*
+ * 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;
Modified: JMathLib/trunk/src/jmathlib/core/interpreter/ErrorLogger.java
===================================================================
--- JMathLib/trunk/src/jmathlib/core/interpreter/ErrorLogger.java 2009-02-04 19:52:35 UTC (rev 831)
+++ JMathLib/trunk/src/jmathlib/core/interpreter/ErrorLogger.java 2009-02-05 21:39:14 UTC (rev 832)
@@ -1,3 +1,11 @@
+/*
+ * This file is part or JMathLib
+ *
+ * Check it out at http://www.jmathlib.de
+ *
+ * Author:
+ * (c) 2002-2009
+ */
package jmathlib.core.interpreter;
import java.io.*;
@@ -20,15 +28,19 @@
return debugB;
}
- /**sets the debug flag
- @param _debug = should debug information be displayed*/
+ /**
+ * sets the debug flag
+ * @param _debug = should debug information be displayed
+ */
public static void setDebug(boolean _debug)
{
debugB = _debug;
}
- /**display a debug line to the standard output and the file MathLib.log
- @param text = the text to display*/
+ /**
+ * display a debug line to the standard output and the file MathLib.log
+ * @param text = the text to display
+ */
public static void debugLine(String text)
{
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|