> node;
@@ -77,18 +77,18 @@ public class Piece
*
*
* Objects of the following type(s) are allowed in the list
- * {@link JAXBElement }{@code <}{@link Ci }{@code >}
* {@link JAXBElement }{@code <}{@link MathBase }{@code >}
- * {@link JAXBElement }{@code <}{@link Cn }{@code >}
- * {@link JAXBElement }{@code <}{@link Semantics }{@code >}
* {@link JAXBElement }{@code <}{@link Apply }{@code >}
- * {@link JAXBElement }{@code <}{@link Csymbol }{@code >}
+ * {@link JAXBElement }{@code <}{@link Ci }{@code >}
+ * {@link JAXBElement }{@code <}{@link Semantics }{@code >}
* {@link JAXBElement }{@code <}{@link MathBase }{@code >}
* {@link JAXBElement }{@code <}{@link MathBase }{@code >}
* {@link JAXBElement }{@code <}{@link MathBase }{@code >}
+ * {@link JAXBElement }{@code <}{@link Piecewise }{@code >}
+ * {@link JAXBElement }{@code <}{@link Cn }{@code >}
+ * {@link JAXBElement }{@code <}{@link Csymbol }{@code >}
* {@link JAXBElement }{@code <}{@link MathBase }{@code >}
* {@link JAXBElement }{@code <}{@link MathBase }{@code >}
- * {@link JAXBElement }{@code <}{@link Piecewise }{@code >}
*
*
*/
diff --git a/src/org/w3/_1998/math/mathml/Piecewise.java b/src/org/w3/_1998/math/mathml/Piecewise.java
index ab5ed75..a3f9635 100644
--- a/src/org/w3/_1998/math/mathml/Piecewise.java
+++ b/src/org/w3/_1998/math/mathml/Piecewise.java
@@ -2,7 +2,7 @@
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2016.05.24 at 05:21:09 PM JST
+// Generated on: 2016.05.30 at 07:47:34 PM JST
//
diff --git a/src/org/w3/_1998/math/mathml/Semantics.java b/src/org/w3/_1998/math/mathml/Semantics.java
index 4b926f2..695ba0a 100644
--- a/src/org/w3/_1998/math/mathml/Semantics.java
+++ b/src/org/w3/_1998/math/mathml/Semantics.java
@@ -2,7 +2,7 @@
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2016.05.24 at 05:21:09 PM JST
+// Generated on: 2016.05.30 at 07:47:34 PM JST
//
diff --git a/src/org/w3/_1998/math/mathml/SepType.java b/src/org/w3/_1998/math/mathml/SepType.java
index c128344..54ff51c 100644
--- a/src/org/w3/_1998/math/mathml/SepType.java
+++ b/src/org/w3/_1998/math/mathml/SepType.java
@@ -2,7 +2,7 @@
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2016.05.24 at 05:21:09 PM JST
+// Generated on: 2016.05.30 at 07:47:34 PM JST
//
diff --git a/src/org/w3/_1998/math/mathml/package-info.java b/src/org/w3/_1998/math/mathml/package-info.java
index d907b33..292f0fe 100644
--- a/src/org/w3/_1998/math/mathml/package-info.java
+++ b/src/org/w3/_1998/math/mathml/package-info.java
@@ -2,7 +2,7 @@
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2016.05.24 at 05:21:09 PM JST
+// Generated on: 2016.05.30 at 07:47:34 PM JST
//
@javax.xml.bind.annotation.XmlSchema(namespace = "http://www.w3.org/1998/Math/MathML", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED)
diff --git a/src/sample/APITest.java b/src/sample/APITest.java
index 07c8b6d..7a6379b 100644
--- a/src/sample/APITest.java
+++ b/src/sample/APITest.java
@@ -1,7 +1,6 @@
package sample;
import java.io.File;
-import java.math.BigDecimal;
import java.util.List;
import javax.xml.bind.JAXBContext;
@@ -58,7 +57,7 @@ public static void main(String[] args) {
List rList = sbml.getModel().getListOfReactions().getReaction();
for(Reaction r : rList){
- System.out.println(r.getId() + ":" + r.getAnnotation().getExtension().getReaction() + ", " + r.getAnnotation().getExtension().getName());
+ System.out.println(r.getId() + ":" + r.getAnnotation().getExtension().getReactionType() + ", " + r.getAnnotation().getExtension().getName());
ConnectScheme cs = r.getAnnotation().getExtension().getConnectScheme();
System.out.println("connect policy " + cs.getConnectPolicy());
}