com.foursoft.vecmodel.vec113.VecTopologyGroupSpecification Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0
// See https://javaee.github.io/jaxb-v2/
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2021.08.10 at 09:49:21 AM UTC
//
package com.foursoft.vecmodel.vec113;
import java.io.Serializable;
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.XmlElement;
import javax.xml.bind.annotation.XmlIDREF;
import javax.xml.bind.annotation.XmlList;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import com.foursoft.vecmodel.vec113.visitor.Visitable;
import com.foursoft.vecmodel.vec113.visitor.Visitor;
import com.foursoft.xml.annotations.XmlBackReference;
/**
* A TopologyGroupSpecification defines a new Topology based on the grouped Topologies. (see KBLFRM-240)
*
* Java class for TopologyGroupSpecification complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="TopologyGroupSpecification">
* <complexContent>
* <extension base="{http://www.prostep.org/ecad-if/2011/vec}TopologySpecification">
* <sequence>
* <element name="TopologySpecification" type="{http://www.w3.org/2001/XMLSchema}IDREFS" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TopologyGroupSpecification", propOrder = {
"topologySpecification"
})
public class VecTopologyGroupSpecification
extends VecTopologySpecification
implements Serializable, Visitable
{
private final static long serialVersionUID = 1L;
@XmlList
@XmlElement(name = "TopologySpecification", type = java.lang.Object.class)
@XmlIDREF
@XmlSchemaType(name = "IDREFS")
@XmlBackReference(destinationField = "refTopologyGroupSpecification")
protected List topologySpecification;
/**
* Gets the value of the topologySpecification 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 topologySpecification property.
*
*
* For example, to add a new item, do as follows:
*
* getTopologySpecification().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Object }
*
*
*/
public List getTopologySpecification() {
if (topologySpecification == null) {
topologySpecification = new ArrayList();
}
return this.topologySpecification;
}
publicR accept(Visitor aVisitor)
throws E
{
return aVisitor.visitVecTopologyGroupSpecification(this);
}
}