Package step.repository.alm.otaclient
Interface IVersionControl
-
- All Superinterfaces:
com4j.Com4jObject
public interface IVersionControl extends com4j.Com4jObjectRepresents a Version Control System connection.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcheckIn(String comment)Saves the changes to the current object.voidcheckInAndOverrideLastVersion(String comment)For HP use.voidcheckOut(String comment)Checks out the object, enabling editing.voidundoCheckout()Removes the checked out version of the object.IListversions()For HP use.Objectversions(int index)
-
-
-
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.
-
-