The following schema fragment specifies the expected content contained within this class.
- *
- *
The following schema fragment specifies the expected content contained within this class.
- *
- *
The following schema fragment specifies the expected content contained within this class.
- *
- *
The following schema fragment specifies the expected content contained within this class.
- *
- *
The following schema fragment specifies the expected content contained within this class.
- *
- *
The following schema fragment specifies the expected content contained within this class.
- *
- *
any;
-
- /**
- * Gets the value of the any property.
- *
- *
- * This accessor method returns a reference to the live list,
- * not a snapshot. Therefore any modification you make to the
- * returned list will be present inside the JAXB object.
- * This is why there is not a set
method for the any property.
- *
- *
- * For example, to add a new item, do as follows:
- *
- * getAny().add(newItem);
- *
- *
- *
- *
- * Objects of the following type(s) are allowed in the list
- * {@link Element }
- *
- *
- */
- public List getAny() {
- if (any == null) {
- any = new ArrayList();
- }
- return this.any;
- }
-
-}
diff --git a/wise-webapp/src/main/java/com/wisemapping/xml/freemind/Icon.java b/wise-webapp/src/main/java/com/wisemapping/xml/freemind/Icon.java
deleted file mode 100644
index fed3fcae..00000000
--- a/wise-webapp/src/main/java/com/wisemapping/xml/freemind/Icon.java
+++ /dev/null
@@ -1,67 +0,0 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2011.01.10 at 02:12:59 PM ART
-//
-
-
-package com.wisemapping.xml.freemind;
-
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlAttribute;
-import javax.xml.bind.annotation.XmlRootElement;
-import javax.xml.bind.annotation.XmlType;
-
-
-/**
- * Java class for anonymous complex type.
- *
- *
The following schema fragment specifies the expected content contained within this class.
- *
- *
- * <complexType>
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <attribute name="BUILTIN" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- * </restriction>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "")
-@XmlRootElement(name = "icon")
-public class Icon {
-
- @XmlAttribute(name = "BUILTIN", required = true)
- protected String builtin;
-
- /**
- * Gets the value of the builtin property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getBUILTIN() {
- return builtin;
- }
-
- /**
- * Sets the value of the builtin property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setBUILTIN(String value) {
- this.builtin = value;
- }
-
-}
diff --git a/wise-webapp/src/main/java/com/wisemapping/xml/freemind/Map.java b/wise-webapp/src/main/java/com/wisemapping/xml/freemind/Map.java
deleted file mode 100644
index 0f9657e7..00000000
--- a/wise-webapp/src/main/java/com/wisemapping/xml/freemind/Map.java
+++ /dev/null
@@ -1,99 +0,0 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2011.01.10 at 02:12:59 PM ART
-//
-
-
-package com.wisemapping.xml.freemind;
-
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlAttribute;
-import javax.xml.bind.annotation.XmlElement;
-import javax.xml.bind.annotation.XmlRootElement;
-import javax.xml.bind.annotation.XmlType;
-
-
-/**
- * Java class for anonymous complex type.
- *
- *
The following schema fragment specifies the expected content contained within this class.
- *
- *
- * <complexType>
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <sequence>
- * <element ref="{}node"/>
- * </sequence>
- * <attribute name="version" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- * </restriction>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "", propOrder = {
- "node"
-})
-@XmlRootElement(name = "map")
-public class Map {
-
- @XmlElement(required = true)
- protected Node node;
- @XmlAttribute(required = true)
- protected String version;
-
- /**
- * Gets the value of the node property.
- *
- * @return
- * possible object is
- * {@link Node }
- *
- */
- public Node getNode() {
- return node;
- }
-
- /**
- * Sets the value of the node property.
- *
- * @param value
- * allowed object is
- * {@link Node }
- *
- */
- public void setNode(Node value) {
- this.node = value;
- }
-
- /**
- * Gets the value of the version property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getVersion() {
- return version;
- }
-
- /**
- * Sets the value of the version property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setVersion(String value) {
- this.version = value;
- }
-
-}
diff --git a/wise-webapp/src/main/java/com/wisemapping/xml/freemind/Node.java b/wise-webapp/src/main/java/com/wisemapping/xml/freemind/Node.java
deleted file mode 100644
index e2daf0c8..00000000
--- a/wise-webapp/src/main/java/com/wisemapping/xml/freemind/Node.java
+++ /dev/null
@@ -1,466 +0,0 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2011.01.10 at 02:12:59 PM ART
-//
-
-
-package com.wisemapping.xml.freemind;
-
-import java.math.BigInteger;
-import java.util.ArrayList;
-import java.util.List;
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlAttribute;
-import javax.xml.bind.annotation.XmlElement;
-import javax.xml.bind.annotation.XmlElements;
-import javax.xml.bind.annotation.XmlID;
-import javax.xml.bind.annotation.XmlRootElement;
-import javax.xml.bind.annotation.XmlSchemaType;
-import javax.xml.bind.annotation.XmlType;
-import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
-import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
-
-
-/**
- * Java class for anonymous complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- *
- * <complexType>
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <choice maxOccurs="unbounded" minOccurs="0">
- * <element ref="{}arrowlink"/>
- * <element ref="{}cloud"/>
- * <element ref="{}edge"/>
- * <element ref="{}font"/>
- * <element ref="{}hook"/>
- * <element ref="{}icon"/>
- * <element ref="{}node"/>
- * <element ref="{}richcontent"/>
- * </choice>
- * <attribute name="BACKGROUND_COLOR" type="{http://www.w3.org/2001/XMLSchema}string" />
- * <attribute name="COLOR" type="{http://www.w3.org/2001/XMLSchema}string" />
- * <attribute name="FOLDED">
- * <simpleType>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- * <enumeration value="true"/>
- * <enumeration value="false"/>
- * </restriction>
- * </simpleType>
- * </attribute>
- * <attribute name="ID" type="{http://www.w3.org/2001/XMLSchema}ID" />
- * <attribute name="LINK" type="{http://www.w3.org/2001/XMLSchema}string" />
- * <attribute name="POSITION">
- * <simpleType>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- * <enumeration value="left"/>
- * <enumeration value="right"/>
- * </restriction>
- * </simpleType>
- * </attribute>
- * <attribute name="STYLE" type="{http://www.w3.org/2001/XMLSchema}string" />
- * <attribute name="TEXT" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- * <attribute name="CREATED" type="{http://www.w3.org/2001/XMLSchema}integer" />
- * <attribute name="MODIFIED" type="{http://www.w3.org/2001/XMLSchema}integer" />
- * <attribute name="HGAP" type="{http://www.w3.org/2001/XMLSchema}integer" />
- * <attribute name="VGAP" type="{http://www.w3.org/2001/XMLSchema}integer" />
- * <attribute name="VSHIFT" type="{http://www.w3.org/2001/XMLSchema}integer" />
- * <attribute name="ENCRYPTED_CONTENT" type="{http://www.w3.org/2001/XMLSchema}string" />
- * </restriction>
- * </complexContent>
- * </complexType>
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "", propOrder = {
- "arrowlinkOrCloudOrEdge"
-})
-@XmlRootElement(name = "node")
-public class Node {
-
- @XmlElements({
- @XmlElement(name = "icon", type = Icon.class),
- @XmlElement(name = "node", type = Node.class),
- @XmlElement(name = "edge", type = Edge.class),
- @XmlElement(name = "arrowlink", type = Arrowlink.class),
- @XmlElement(name = "font", type = Font.class),
- @XmlElement(name = "hook", type = Hook.class),
- @XmlElement(name = "richcontent", type = Richcontent.class),
- @XmlElement(name = "cloud", type = Cloud.class)
- })
- protected List