From: <nik...@us...> - 2015-04-30 14:16:52
|
Revision: 2264 http://sourceforge.net/p/jsbml/code/2264 Author: niko-rodrigue Date: 2015-04-30 14:16:49 +0000 (Thu, 30 Apr 2015) Log Message: ----------- added the new ASTNode.Types added while designing the ASTNode2 classes. This is in order to be able to use the old ASTNode class within the new branch, instead of using ASTNode2. So that we can produce two jars, one using the old unchanged ASTNode class, one using the ASTNode facade to ASTNode2 Modified Paths: -------------- trunk/core/src/org/sbml/jsbml/ASTNode.java Modified: trunk/core/src/org/sbml/jsbml/ASTNode.java =================================================================== --- trunk/core/src/org/sbml/jsbml/ASTNode.java 2015-04-30 14:01:37 UTC (rev 2263) +++ trunk/core/src/org/sbml/jsbml/ASTNode.java 2015-04-30 14:16:49 UTC (rev 2264) @@ -84,6 +84,14 @@ */ CONSTANT_PI, /** + * + */ + CONSTRUCTOR_PIECE, + /** + * + */ + CONSTRUCTOR_OTHERWISE, + /** * */ CONSTANT_TRUE, @@ -298,6 +306,22 @@ */ POWER, /** + * + */ + PRODUCT, + /** + * + */ + QUALIFIER_BVAR, + /** + * + */ + QUALIFIER_DEGREE, + /** + * + */ + QUALIFIER_LOGBASE, + /** * An {@link ASTNode} of this {@link Type} contains two integer values: * a numerator and a denominator. */ @@ -339,6 +363,10 @@ */ RELATIONAL_NEQ, /** + * + */ + SUM, + /** * */ TIMES, This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |