Class VecCompositionSpecification

All Implemented Interfaces:
Identifiable, ModifiableIdentifiable, HasCustomProperties<VecCustomProperty>, HasDescription<VecAbstractLocalizedString>, HasIdentification, HasModifiableIdentification, Visitable, Serializable

public class VecCompositionSpecification extends VecSpecification implements Serializable, Visitable

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>
 
See Also:
  • Field Details

    • components

      protected List<VecPartOccurrence> components

      Specifies the PartOccurrences defined in the CompositionSpecification.

  • Constructor Details

    • VecCompositionSpecification

      public VecCompositionSpecification()
  • Method Details

    • getComponents

      public List<VecPartOccurrence> getComponents()
      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 Jakarta XML Binding 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 VecPartOccurrence

      Specifies the PartOccurrences defined in the CompositionSpecification.

      Returns:
      The value of the components property.
    • accept

      public <R, E extends Throwable> R accept(Visitor<R,E> aVisitor) throws E
      Specified by:
      accept in interface Visitable
      Throws:
      E extends Throwable