Interface IVersionControl

  • All Superinterfaces:
    com4j.Com4jObject

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

      • checkIn

        void checkIn​(String comment)

        Saves the changes to the current object.

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

        void checkOut​(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

        Object versions​(int index)
      • checkInAndOverrideLastVersion

        void checkInAndOverrideLastVersion​(String comment)

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

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