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

public class VecCreation extends VecExtendableElement implements Serializable, Visitable

A Creation-instance provides additional information to the owning ItemVersion stating personal information on the creator and the creation date.

Java class for Creation complex type.

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


 <complexType name="Creation">
   <complexContent>
     <extension base="{http://www.prostep.org/ecad-if/2011/vec}ExtendableElement">
       <sequence>
         <element name="CreationDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
         <element name="Creator" type="{http://www.prostep.org/ecad-if/2011/vec}Person" minOccurs="0"/>
         <element name="ResponsibleDesigner" type="{http://www.prostep.org/ecad-if/2011/vec}Person" minOccurs="0"/>
       </sequence>
     </extension>
   </complexContent>
 </complexType>
 
See Also:
  • Field Details

    • creationDate

      protected XMLGregorianCalendar creationDate

      Specifies the date when the associated ItemVersion was created. (see KBLFRM-241)

    • creator

      protected VecPerson creator

      Specifies the person who has created the Item.

    • responsibleDesigner

      protected VecPerson responsibleDesigner

      Specifies the person, which is the responsible designer for the ItemVersion at the point of creation.

  • Constructor Details

    • VecCreation

      public VecCreation()
  • Method Details

    • getCreationDate

      public XMLGregorianCalendar getCreationDate()
      Gets the value of the creationDate property.

      Specifies the date when the associated ItemVersion was created. (see KBLFRM-241)

      Returns:
      possible object is XMLGregorianCalendar
    • setCreationDate

      public void setCreationDate(XMLGregorianCalendar value)
      Sets the value of the creationDate property.
      Parameters:
      value - allowed object is XMLGregorianCalendar
      See Also:
    • getCreator

      public VecPerson getCreator()
      Gets the value of the creator property.

      Specifies the person who has created the Item.

      Returns:
      possible object is VecPerson
    • setCreator

      public void setCreator(VecPerson value)
      Sets the value of the creator property.
      Parameters:
      value - allowed object is VecPerson
      See Also:
    • getResponsibleDesigner

      public VecPerson getResponsibleDesigner()
      Gets the value of the responsibleDesigner property.

      Specifies the person, which is the responsible designer for the ItemVersion at the point of creation.

      Returns:
      possible object is VecPerson
    • setResponsibleDesigner

      public void setResponsibleDesigner(VecPerson value)
      Sets the value of the responsibleDesigner property.
      Parameters:
      value - allowed object is VecPerson
      See Also:
    • getParentItemVersion

      public VecItemVersion getParentItemVersion()
      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 VecItemVersion 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