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

com.foursoft.vecmodel.vec113.VecCompositionSpecification 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;


/**
 * 

The CompositionSpecificiation is used to define a set of occurrences required to describe unambiguously the design of a composite part. This does not have to be necessarily the same occurrences which are building the bill of material. Example: A company might want to regard an antenna cable as one part out of a bill of material perspective. However, at the same time it may be useful for the company to be able to describe the contacting of the antenna cable within the VEC. (see also PartStructureSpecification)

* *

Java class for CompositionSpecification complex type. * *

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

 * <complexType name="CompositionSpecification">
 *   <complexContent>
 *     <extension base="{http://www.prostep.org/ecad-if/2011/vec}Specification">
 *       <sequence>
 *         <element name="Component" type="{http://www.prostep.org/ecad-if/2011/vec}PartOccurrence" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CompositionSpecification", propOrder = { "components" }) public class VecCompositionSpecification extends VecSpecification implements Serializable, Visitable { private final static long serialVersionUID = 1L; /** *

Specifies the PartOccurrences defined in the CompositionSpecification.

* */ @XmlElement(name = "Component") protected List components; /** * Gets the value of the components 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 components property. * *

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

     *    getComponents().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link VecPartOccurrence } * *

*

Specifies the PartOccurrences defined in the CompositionSpecification.

* */ public List getComponents() { if (components == null) { components = new ArrayList(); } return this.components; } publicR accept(Visitor aVisitor) throws E { return aVisitor.visitVecCompositionSpecification(this); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy