Interface IVersionControl

  • All Superinterfaces:
    com4j.Com4jObject

    public interface IVersionControl
    extends com4j.Com4jObject
    Represents a Version Control System connection.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void checkIn​(java.lang.String comment)
      Saves the changes to the current object.
      void checkInAndOverrideLastVersion​(java.lang.String comment)
      For HP use.
      void checkOut​(java.lang.String comment)
      Checks out the object, enabling editing.
      void undoCheckout()
      Removes the checked out version of the object.
      IList versions()
      For HP use.
      java.lang.Object versions​(int index)  
      • Methods inherited from interface com4j.Com4jObject

        advise, dispose, equals, getComThread, getIUnknownPointer, getPointer, getPtr, hashCode, is, queryInterface, setName, toString
    • Method Detail

      • checkIn

        void checkIn​(java.lang.String comment)

        Saves the changes to the current object.

        Parameters:
        comment - Mandatory java.lang.String parameter.
      • checkOut

        void checkOut​(java.lang.String comment)

        Checks out the object, enabling editing.

        Parameters:
        comment - Mandatory java.lang.String parameter.
      • undoCheckout

        void undoCheckout()

        Removes the checked out version of the object.

      • versions

        IList versions()

        For HP use. Returns a list of references to the VersionItem objects of this entity.

        Returns:
        Returns a value of type otaclient.IList
      • versions

        java.lang.Object versions​(int index)
      • checkInAndOverrideLastVersion

        void checkInAndOverrideLastVersion​(java.lang.String comment)

        For HP use. Overrides last version and performs check in without promoting the version number.

        Parameters:
        comment - Mandatory java.lang.String parameter.