Class VecHousingComponentReference

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

public class VecHousingComponentReference extends VecConfigurableElement implements Serializable, HasIdentification, HasModifiableIdentification, Visitable

A HousingComponentReference represents the usage of a HousingComponent in the context of a PartUsage or PartOccurrence. (KBLFRM-401)

Java class for HousingComponentReference complex type.

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


 <complexType name="HousingComponentReference">
   <complexContent>
     <extension base="{http://www.prostep.org/ecad-if/2011/vec}ConfigurableElement">
       <sequence>
         <element name="Identification" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
         <element name="ComponentConnector" type="{http://www.w3.org/2001/XMLSchema}IDREF" minOccurs="0"/>
         <element name="HousingComponent" type="{http://www.w3.org/2001/XMLSchema}IDREF"/>
         <element name="ConnectorHousingRole" type="{http://www.prostep.org/ecad-if/2011/vec}ConnectorHousingRole" minOccurs="0"/>
         <element name="PinComponentRef" type="{http://www.prostep.org/ecad-if/2011/vec}PinComponentReference" maxOccurs="unbounded" minOccurs="0"/>
       </sequence>
     </extension>
   </complexContent>
 </complexType>
 
See Also:
  • Field Details

    • identification

      protected String identification

      Specifies a unique identification of the HousingComponentReference. The identification is guaranteed to be unique within the EEComponentRole.

    • componentConnector

      protected VecComponentConnector componentConnector
    • housingComponent

      protected VecHousingComponent housingComponent
    • connectorHousingRole

      protected VecConnectorHousingRole connectorHousingRole
    • pinComponentReves

      protected List<VecPinComponentReference> pinComponentReves
  • Constructor Details

    • VecHousingComponentReference

      public VecHousingComponentReference()
  • Method Details

    • getIdentification

      public String getIdentification()
      Gets the value of the identification property.

      Specifies a unique identification of the HousingComponentReference. The identification is guaranteed to be unique within the EEComponentRole.

      Specified by:
      getIdentification in interface HasIdentification
      Returns:
      possible object is String
    • setIdentification

      public void setIdentification(String value)
      Sets the value of the identification property.
      Specified by:
      setIdentification in interface HasModifiableIdentification
      Parameters:
      value - allowed object is String
      See Also:
    • getComponentConnector

      public VecComponentConnector getComponentConnector()
      Gets the value of the componentConnector property.
      Returns:
      possible object is Object
    • setComponentConnector

      public void setComponentConnector(VecComponentConnector value)
      Sets the value of the componentConnector property.
      Parameters:
      value - allowed object is Object
    • getHousingComponent

      public VecHousingComponent getHousingComponent()
      Gets the value of the housingComponent property.
      Returns:
      possible object is Object
    • setHousingComponent

      public void setHousingComponent(VecHousingComponent value)
      Sets the value of the housingComponent property.
      Parameters:
      value - allowed object is Object
    • getConnectorHousingRole

      public VecConnectorHousingRole getConnectorHousingRole()
      Gets the value of the connectorHousingRole property.
      Returns:
      possible object is VecConnectorHousingRole
    • setConnectorHousingRole

      public void setConnectorHousingRole(VecConnectorHousingRole value)
      Sets the value of the connectorHousingRole property.
      Parameters:
      value - allowed object is VecConnectorHousingRole
    • getPinComponentReves

      public List<VecPinComponentReference> getPinComponentReves()
      Gets the value of the pinComponentReves 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 pinComponentReves property.

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

          getPinComponentReves().add(newItem);
       

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

      Returns:
      The value of the pinComponentReves property.
    • getParentEEComponentRole

      public VecEEComponentRole getParentEEComponentRole()
      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 VecEEComponentRole 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