Class ProjectObject

    • Constructor Summary

      Constructors 
      Constructor Description
      ProjectObject()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean equals​(java.lang.Object obj)
      The equals implementation based on the reference ID.
      java.lang.String getReferenceID()
      The reference ID that uniquely identifies an object.
      int hashCode()
      The hash code implementation based on the reference ID.
      void setReferenceID​(java.lang.String referenceID)
      The reference ID that uniquely identifies an object.
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • ProjectObject

        public ProjectObject()
    • Method Detail

      • getReferenceID

        public java.lang.String getReferenceID()
        The reference ID that uniquely identifies an object.

        All the API classes automatically generate an unique ID when are created.
        Specified by:
        getReferenceID in interface Referenceable
      • setReferenceID

        public void setReferenceID​(java.lang.String referenceID)
        The reference ID that uniquely identifies an object.

        All the API classes automatically generate an unique ID when are created. This method is not expected to be called by the API's end user.
        Specified by:
        setReferenceID in interface Referenceable
      • hashCode

        public int hashCode()
        The hash code implementation based on the reference ID.
        Overrides:
        hashCode in class java.lang.Object
      • equals

        public boolean equals​(java.lang.Object obj)
        The equals implementation based on the reference ID.
        Overrides:
        equals in class java.lang.Object