Class VecConnectionSpecification

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

public class VecConnectionSpecification extends VecSpecification implements Serializable, Visitable

A ConnectionSpecification is used to define electrological connectivity.

Java class for ConnectionSpecification complex type.

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


 <complexType name="ConnectionSpecification">
   <complexContent>
     <extension base="{http://www.prostep.org/ecad-if/2011/vec}Specification">
       <sequence>
         <element name="ComponentNode" type="{http://www.prostep.org/ecad-if/2011/vec}ComponentNode" maxOccurs="unbounded" minOccurs="0"/>
         <element name="Connection" type="{http://www.prostep.org/ecad-if/2011/vec}Connection" maxOccurs="unbounded" minOccurs="0"/>
         <element name="ConnectionGroup" type="{http://www.prostep.org/ecad-if/2011/vec}ConnectionGroup" maxOccurs="unbounded" minOccurs="0"/>
       </sequence>
     </extension>
   </complexContent>
 </complexType>
 
See Also:
  • Field Details

  • Constructor Details

    • VecConnectionSpecification

      public VecConnectionSpecification()
  • Method Details

    • getComponentNodes

      public List<VecComponentNode> getComponentNodes()
      Gets the value of the componentNodes 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 componentNodes property.

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

          getComponentNodes().add(newItem);
       

      Objects of the following type(s) are allowed in the list VecComponentNode

      Returns:
      The value of the componentNodes property.
    • getConnections

      public List<VecConnection> getConnections()
      Gets the value of the connections 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 connections property.

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

          getConnections().add(newItem);
       

      Objects of the following type(s) are allowed in the list VecConnection

      Returns:
      The value of the connections property.
    • getConnectionGroups

      public List<VecConnectionGroup> getConnectionGroups()
      Gets the value of the connectionGroups 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 connectionGroups property.

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

          getConnectionGroups().add(newItem);
       

      Objects of the following type(s) are allowed in the list VecConnectionGroup

      Returns:
      The value of the connectionGroups 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