Remove trunk directory

This commit is contained in:
Paulo Gustavo Veiga
2009-11-06 23:30:29 -02:00
parent 2494133fed
commit 75470a91fd
715 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,517 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* $Id: file 64488 2006-03-10 17:32:09Z paulo $
*/
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.0 in JDK 1.6
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2007.08.27 at 09:24:17 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.XmlType;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;choice maxOccurs="unbounded" minOccurs="0">
* &lt;element ref="{}arrowlink"/>
* &lt;element ref="{}cloud"/>
* &lt;element ref="{}edge"/>
* &lt;element ref="{}font"/>
* &lt;element ref="{}hook"/>
* &lt;element ref="{}icon"/>
* &lt;element ref="{}node"/>
* &lt;/choice>
* &lt;attribute name="BACKGROUND_COLOR" type="{http://www.w3.org/2001/XMLSchema}string" />
* &lt;attribute name="COLOR" type="{http://www.w3.org/2001/XMLSchema}string" />
* &lt;attribute name="CREATED" type="{http://www.w3.org/2001/XMLSchema}integer" />
* &lt;attribute name="ENCRYPTED_CONTENT" type="{http://www.w3.org/2001/XMLSchema}string" />
* &lt;attribute name="FOLDED">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
* &lt;enumeration value="true"/>
* &lt;enumeration value="false"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/attribute>
* &lt;attribute name="HGAP" type="{http://www.w3.org/2001/XMLSchema}integer" />
* &lt;attribute name="ID" type="{http://www.w3.org/2001/XMLSchema}ID" />
* &lt;attribute name="LINK" type="{http://www.w3.org/2001/XMLSchema}string" />
* &lt;attribute name="MODIFIED" type="{http://www.w3.org/2001/XMLSchema}integer" />
* &lt;attribute name="POSITION">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
* &lt;enumeration value="left"/>
* &lt;enumeration value="right"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/attribute>
* &lt;attribute name="STYLE" type="{http://www.w3.org/2001/XMLSchema}string" />
* &lt;attribute name="TEXT" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* &lt;attribute name="VGAP" type="{http://www.w3.org/2001/XMLSchema}integer" />
* &lt;attribute name="VSHIFT" type="{http://www.w3.org/2001/XMLSchema}integer" />
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"arrowlinkOrCloudOrEdge"
})
@XmlRootElement(name = "node")
public class Node {
@XmlElements({
@XmlElement(name = "cloud", type = Cloud.class),
@XmlElement(name = "icon", type = Icon.class),
@XmlElement(name = "arrowlink", type = Arrowlink.class),
@XmlElement(name = "edge", type = Edge.class),
@XmlElement(name = "font", type = Font.class),
@XmlElement(name = "node", type = Node.class),
@XmlElement(name = "hook", type = Hook.class)
})
protected List<Object> arrowlinkOrCloudOrEdge;
@XmlAttribute(name = "BACKGROUND_COLOR")
protected String backgroundcolor;
@XmlAttribute(name = "COLOR")
protected String color;
@XmlAttribute(name = "CREATED")
protected BigInteger created;
@XmlAttribute(name = "ENCRYPTED_CONTENT")
protected String encryptedcontent;
@XmlAttribute(name = "FOLDED")
protected String folded;
@XmlAttribute(name = "HGAP")
protected BigInteger hgap;
@XmlAttribute(name = "ID")
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlID
protected String id;
@XmlAttribute(name = "LINK")
protected String link;
@XmlAttribute(name = "MODIFIED")
protected BigInteger modified;
@XmlAttribute(name = "POSITION")
protected String position;
@XmlAttribute(name = "STYLE")
protected String style;
@XmlAttribute(name = "TEXT", required = true)
protected String text;
@XmlAttribute(name = "VGAP")
protected BigInteger vgap;
@XmlAttribute(name = "VSHIFT")
protected BigInteger vshift;
/**
* Gets the value of the arrowlinkOrCloudOrEdge property.
*
* <p>
* 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 <CODE>set</CODE> method for the arrowlinkOrCloudOrEdge property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getArrowlinkOrCloudOrEdge().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link Cloud }
* {@link Icon }
* {@link Arrowlink }
* {@link Edge }
* {@link Font }
* {@link Node }
* {@link Hook }
*
*
*/
public List<Object> getArrowlinkOrCloudOrEdge() {
if (arrowlinkOrCloudOrEdge == null) {
arrowlinkOrCloudOrEdge = new ArrayList<Object>();
}
return this.arrowlinkOrCloudOrEdge;
}
/**
* Gets the value of the backgroundcolor property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getBACKGROUNDCOLOR() {
return backgroundcolor;
}
/**
* Sets the value of the backgroundcolor property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setBACKGROUNDCOLOR(String value) {
this.backgroundcolor = value;
}
/**
* Gets the value of the color property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCOLOR() {
return color;
}
/**
* Sets the value of the color property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCOLOR(String value) {
this.color = value;
}
/**
* Gets the value of the created property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getCREATED() {
return created;
}
/**
* Sets the value of the created property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setCREATED(BigInteger value) {
this.created = value;
}
/**
* Gets the value of the encryptedcontent property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getENCRYPTEDCONTENT() {
return encryptedcontent;
}
/**
* Sets the value of the encryptedcontent property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setENCRYPTEDCONTENT(String value) {
this.encryptedcontent = value;
}
/**
* Gets the value of the folded property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFOLDED() {
return folded;
}
/**
* Sets the value of the folded property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFOLDED(String value) {
this.folded = value;
}
/**
* Gets the value of the hgap property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getHGAP() {
return hgap;
}
/**
* Sets the value of the hgap property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setHGAP(BigInteger value) {
this.hgap = value;
}
/**
* Gets the value of the id property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getID() {
return id;
}
/**
* Sets the value of the id property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setID(String value) {
this.id = value;
}
/**
* Gets the value of the link property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLINK() {
return link;
}
/**
* Sets the value of the link property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLINK(String value) {
this.link = value;
}
/**
* Gets the value of the modified property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getMODIFIED() {
return modified;
}
/**
* Sets the value of the modified property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setMODIFIED(BigInteger value) {
this.modified = value;
}
/**
* Gets the value of the position property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPOSITION() {
return position;
}
/**
* Sets the value of the position property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPOSITION(String value) {
this.position = value;
}
/**
* Gets the value of the style property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSTYLE() {
return style;
}
/**
* Sets the value of the style property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSTYLE(String value) {
this.style = value;
}
/**
* Gets the value of the text property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTEXT() {
return text;
}
/**
* Sets the value of the text property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTEXT(String value) {
this.text = value;
}
/**
* Gets the value of the vgap property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getVGAP() {
return vgap;
}
/**
* Sets the value of the vgap property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setVGAP(BigInteger value) {
this.vgap = value;
}
/**
* Gets the value of the vshift property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getVSHIFT() {
return vshift;
}
/**
* Sets the value of the vshift property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setVSHIFT(BigInteger value) {
this.vshift = value;
}
}