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)
java.lang.String
versionsRelationsToBaselines()
For HP use.
-
-
-
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 step.repository.alm.v16.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.
-
versionsRelationsToBaselines
java.lang.String versionsRelationsToBaselines()
For HP use. Get xml than details for each version in which baselines it participates.
- Returns:
- Returns a value of type java.lang.String
-
-