Class VecWireMounting

java.lang.Object
com.foursoft.harness.vec.v113.VecExtendableElement
com.foursoft.harness.vec.v113.VecWireMounting
All Implemented Interfaces:
Identifiable, ModifiableIdentifiable, HasCustomProperties<VecCustomProperty>, Visitable, Serializable

public class VecWireMounting extends VecExtendableElement implements Serializable, Visitable

A wire mouting defines the mouting of a wire end to terminal. If the contacting is required to be water proof a cavity seal can be mounted additionally.

Java class for WireMounting complex type.

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


 <complexType name="WireMounting">
   <complexContent>
     <extension base="{http://www.prostep.org/ecad-if/2011/vec}ExtendableElement">
       <sequence>
         <element name="MountedCavitySeal" type="{http://www.w3.org/2001/XMLSchema}IDREF" minOccurs="0"/>
         <element name="ReferencedWireEnd" type="{http://www.w3.org/2001/XMLSchema}IDREFS"/>
         <element name="WireEndAccessory" type="{http://www.w3.org/2001/XMLSchema}IDREFS" minOccurs="0"/>
         <element name="WireMountingDetail" type="{http://www.prostep.org/ecad-if/2011/vec}WireMountingDetail" maxOccurs="unbounded" minOccurs="0"/>
       </sequence>
     </extension>
   </complexContent>
 </complexType>
 
See Also:
  • Field Details

    • mountedCavitySeal

      protected VecCavitySealRole mountedCavitySeal

      References the cavity seal that is used for the wire mounting.

    • referencedWireEnd

      protected List<VecWireEnd> referencedWireEnd

      References the wire ends that are used for the wire mounting. The minimum cardinality is one, because a wire mounting without wire end makes no sense.

      The maximum cardinality is * in order to support multi crimps.

    • wireEndAccessory

      protected List<VecWireEndAccessoryRole> wireEndAccessory
    • wireMountingDetails

      protected List<VecWireMountingDetail> wireMountingDetails

      Specifies the WireMoutingDetails, if a detailed description of the relationships between WireEnds and WireReceptions is needed.

  • Constructor Details

    • VecWireMounting

      public VecWireMounting()
  • Method Details

    • getMountedCavitySeal

      public VecCavitySealRole getMountedCavitySeal()
      Gets the value of the mountedCavitySeal property.

      References the cavity seal that is used for the wire mounting.

      Returns:
      possible object is Object
    • setMountedCavitySeal

      public void setMountedCavitySeal(VecCavitySealRole value)
      Sets the value of the mountedCavitySeal property.
      Parameters:
      value - allowed object is Object
      See Also:
    • getWireMountingDetails

      public List<VecWireMountingDetail> getWireMountingDetails()
      Gets the value of the wireMountingDetails 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 wireMountingDetails property.

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

          getWireMountingDetails().add(newItem);
       

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

      Specifies the WireMoutingDetails, if a detailed description of the relationships between WireEnds and WireReceptions is needed.

      Returns:
      The value of the wireMountingDetails property.
    • getReferencedWireEnd

      public List<VecWireEnd> getReferencedWireEnd()
      Gets the value of the referencedWireEnd 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 referencedWireEnd property.

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

          getReferencedWireEnd().add(newItem);
       

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

      References the wire ends that are used for the wire mounting. The minimum cardinality is one, because a wire mounting without wire end makes no sense.

      The maximum cardinality is * in order to support multi crimps.

    • getWireEndAccessory

      public List<VecWireEndAccessoryRole> getWireEndAccessory()
      Gets the value of the wireEndAccessory 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 wireEndAccessory property.

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

          getWireEndAccessory().add(newItem);
       

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

    • getParentContactPoint

      public VecContactPoint getParentContactPoint()
      Gets a reference to the parent of this object in the XML DOM Tree. If this class can have different parents in DOM, this property is initialized with the parent, if the parent is a VecContactPoint otherwise it will be null.
      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