org.xmlnetwork.Networks Maven / Gradle / Ivy
Show all versions of fractal-bf-hdl-model Show documentation
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.2-b01-fcs
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2008.06.03 at 04:27:27 PM CEST
//
package org.xmlnetwork;
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.XmlType;
/**
* Java class for networks complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="networks">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="n" maxOccurs="unbounded">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="networkAddress" type="{http://www.xmlnetwork.org}network"/>
* <element name="CollisionDomains">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="c" maxOccurs="unbounded">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="iface" maxOccurs="unbounded" minOccurs="0">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="if" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="r_id" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
* </element>
* </sequence>
* <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
* </element>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* </sequence>
* <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
* </element>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "networks", propOrder = {
"n"
})
public class Networks {
@XmlElement(required = true)
protected List n;
/**
* Gets the value of the n 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 n property.
*
*
* For example, to add a new item, do as follows:
*
* getN().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Networks.N }
*
*
*/
public List getN() {
if (n == null) {
n = new ArrayList();
}
return this.n;
}
/**
* 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 name="networkAddress" type="{http://www.xmlnetwork.org}network"/>
* <element name="CollisionDomains">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="c" maxOccurs="unbounded">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="iface" maxOccurs="unbounded" minOccurs="0">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="if" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="r_id" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
* </element>
* </sequence>
* <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
* </element>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* </sequence>
* <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"networkAddress",
"collisionDomains"
})
public static class N {
@XmlElement(required = true)
protected String networkAddress;
@XmlElement(name = "CollisionDomains", required = true)
protected Networks.N.CollisionDomains collisionDomains;
@XmlAttribute
protected String id;
/**
* Gets the value of the networkAddress property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNetworkAddress() {
return networkAddress;
}
/**
* Sets the value of the networkAddress property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNetworkAddress(String value) {
this.networkAddress = value;
}
/**
* Gets the value of the collisionDomains property.
*
* @return
* possible object is
* {@link Networks.N.CollisionDomains }
*
*/
public Networks.N.CollisionDomains getCollisionDomains() {
return collisionDomains;
}
/**
* Sets the value of the collisionDomains property.
*
* @param value
* allowed object is
* {@link Networks.N.CollisionDomains }
*
*/
public void setCollisionDomains(Networks.N.CollisionDomains value) {
this.collisionDomains = 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;
}
/**
* 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 name="c" maxOccurs="unbounded">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="iface" maxOccurs="unbounded" minOccurs="0">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="if" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="r_id" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
* </element>
* </sequence>
* <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
* </element>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"c"
})
public static class CollisionDomains {
@XmlElement(required = true)
protected List c;
/**
* Gets the value of the c 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 c property.
*
*
* For example, to add a new item, do as follows:
*
* getC().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Networks.N.CollisionDomains.C }
*
*
*/
public List getC() {
if (c == null) {
c = new ArrayList();
}
return this.c;
}
/**
* 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 name="iface" maxOccurs="unbounded" minOccurs="0">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="if" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="r_id" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
* </element>
* </sequence>
* <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"iface"
})
public static class C {
protected List iface;
@XmlAttribute
protected String id;
/**
* Gets the value of the iface 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 iface property.
*
*
* For example, to add a new item, do as follows:
*
* getIface().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Networks.N.CollisionDomains.C.Iface }
*
*
*/
public List getIface() {
if (iface == null) {
iface = new ArrayList();
}
return this.iface;
}
/**
* 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;
}
/**
* 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="if" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="r_id" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "")
public static class Iface {
@XmlAttribute(name = "if")
protected String _if;
@XmlAttribute(name = "r_id")
protected String rId;
/**
* Gets the value of the if property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIf() {
return _if;
}
/**
* Sets the value of the if property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIf(String value) {
this._if = value;
}
/**
* Gets the value of the rId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getRId() {
return rId;
}
/**
* Sets the value of the rId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setRId(String value) {
this.rId = value;
}
}
}
}
}
}