All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.foursoft.vecmodel.vec113.VecRoutingSpecification 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.XmlType;
import com.foursoft.vecmodel.vec113.visitor.Visitable;
import com.foursoft.vecmodel.vec113.visitor.Visitor;


/**
 * 

Specification for the description of Routings.

* *

Java class for RoutingSpecification complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="RoutingSpecification">
 *   <complexContent>
 *     <extension base="{http://www.prostep.org/ecad-if/2011/vec}Specification">
 *       <sequence>
 *         <element name="Routing" type="{http://www.prostep.org/ecad-if/2011/vec}Routing" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "RoutingSpecification", propOrder = { "routings" }) public class VecRoutingSpecification extends VecSpecification implements Serializable, Visitable { private final static long serialVersionUID = 1L; @XmlElement(name = "Routing") protected List routings; /** * Gets the value of the routings 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 routings property. * *

* For example, to add a new item, do as follows: *

     *    getRoutings().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link VecRouting } * * */ public List getRoutings() { if (routings == null) { routings = new ArrayList(); } return this.routings; } publicR accept(Visitor aVisitor) throws E { return aVisitor.visitVecRoutingSpecification(this); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy