Class VecWireGroupSpecification

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

public class VecWireGroupSpecification extends VecSpecification implements Serializable, Visitable

Specification for the definition of WireGroups. Wire groups are for example used for the representation of twisted pairs.

Java class for WireGroupSpecification complex type.

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


 <complexType name="WireGroupSpecification">
   <complexContent>
     <extension base="{http://www.prostep.org/ecad-if/2011/vec}Specification">
       <sequence>
         <element name="GroupType" type="{http://www.w3.org/2001/XMLSchema}string"/>
         <element name="LengthOfTwist" type="{http://www.prostep.org/ecad-if/2011/vec}NumericalValue" minOccurs="0"/>
       </sequence>
     </extension>
   </complexContent>
 </complexType>
 
See Also:
  • Field Details

    • groupType

      protected String groupType

      Specifies the type of the group. This should be an enumeration of values defined in a conformance class (e.g. twisted pair, ...).

    • lengthOfTwist

      protected VecNumericalValue lengthOfTwist

      Specifies the length of twist if the wire group is representing a twisted pair.

  • Constructor Details

    • VecWireGroupSpecification

      public VecWireGroupSpecification()
  • Method Details

    • getGroupType

      public String getGroupType()
      Gets the value of the groupType property.

      Specifies the type of the group. This should be an enumeration of values defined in a conformance class (e.g. twisted pair, ...).

      Returns:
      possible object is String
    • setGroupType

      public void setGroupType(String value)
      Sets the value of the groupType property.
      Parameters:
      value - allowed object is String
      See Also:
    • getLengthOfTwist

      public VecNumericalValue getLengthOfTwist()
      Gets the value of the lengthOfTwist property.

      Specifies the length of twist if the wire group is representing a twisted pair.

      Returns:
      possible object is VecNumericalValue
    • setLengthOfTwist

      public void setLengthOfTwist(VecNumericalValue value)
      Sets the value of the lengthOfTwist property.
      Parameters:
      value - allowed object is VecNumericalValue
      See Also:
    • getRefWireElementSpecification

      public Set<VecWireElementSpecification> getRefWireElementSpecification()
      Gets a Set of all VecWireElementSpecification that have a outgoing reference to this object.
      Warning!: This is a readonly property! It has to be initialized during the unmarshalling process by the ExtendedUnmarshaller.
      This property is consistent to the state of object model at the time of unmarshalling. It does not reflect any changes done in the object model after the unmarshalling.
      This property has no effect when the object is marshalled to xml.
    • getRefWireGrouping

      public Set<VecWireGrouping> getRefWireGrouping()
      Gets a Set of all VecWireGrouping that have a outgoing reference to this object.
      Warning!: This is a readonly property! It has to be initialized during the unmarshalling process by the ExtendedUnmarshaller.
      This property is consistent to the state of object model at the time of unmarshalling. It does not reflect any changes done in the object model after the unmarshalling.
      This property has no effect when the object is marshalled to xml.
    • accept

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