Interface ICycle
-
- All Superinterfaces:
com4j.Com4jObject
,IBaseField
,IBaseFieldEx
,IBaseFieldExMail
,IObjectLockingSupport
public interface ICycle extends IBaseFieldExMail
Represents a Cycle.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
daysLeft()
Returns the number of days until the scheduled end of the cycle.java.util.Date
endDate()
The cycle's end date.void
endDate(java.util.Date pVal)
The cycle's end date.java.lang.String
name()
The cycle's name.void
name(java.lang.String pVal)
The cycle's name.com4j.Com4jObject
parent()
The cycle's parent release.com4j.Com4jObject
releaseManagementInfo()
Returns the cycle information.java.util.Date
startDate()
The cycle's start date.void
startDate(java.util.Date pVal)
The cycle's start date.java.lang.String
status()
The cycle's status.void
status(java.lang.String pVal)
The cycle's status.-
Methods inherited from interface com4j.Com4jObject
advise, dispose, equals, getComThread, getIUnknownPointer, getPointer, getPtr, hashCode, is, queryInterface, setName, toString
-
Methods inherited from interface step.repository.alm.otaclient.IBaseField
autoPost, autoPost, field, field, id, modified, post, refresh, undo, virtual
-
Methods inherited from interface step.repository.alm.otaclient.IBaseFieldEx
attachments, hasAttachment, history
-
Methods inherited from interface step.repository.alm.otaclient.IBaseFieldExMail
mail
-
Methods inherited from interface step.repository.alm.otaclient.IObjectLockingSupport
isLocked, lockObject, unLockObject
-
-
-
-
Method Detail
-
name
java.lang.String name()
The cycle's name.
Getter method for the COM property "Name"
- Returns:
- Returns a value of type java.lang.String
-
name
void name(java.lang.String pVal)
The cycle's name.
Setter method for the COM property "Name"
- Parameters:
pVal
- Mandatory java.lang.String parameter.
-
startDate
java.util.Date startDate()
The cycle's start date.
Getter method for the COM property "StartDate"
- Returns:
- Returns a value of type java.util.Date
-
startDate
void startDate(java.util.Date pVal)
The cycle's start date.
Setter method for the COM property "StartDate"
- Parameters:
pVal
- Mandatory java.util.Date parameter.
-
endDate
java.util.Date endDate()
The cycle's end date.
Getter method for the COM property "EndDate"
- Returns:
- Returns a value of type java.util.Date
-
endDate
void endDate(java.util.Date pVal)
The cycle's end date.
Setter method for the COM property "EndDate"
- Parameters:
pVal
- Mandatory java.util.Date parameter.
-
status
java.lang.String status()
The cycle's status.
Getter method for the COM property "Status"
- Returns:
- Returns a value of type java.lang.String
-
status
void status(java.lang.String pVal)
The cycle's status.
Setter method for the COM property "Status"
- Parameters:
pVal
- Mandatory java.lang.String parameter.
-
parent
com4j.Com4jObject parent()
The cycle's parent release.
Getter method for the COM property "Parent"
- Returns:
- Returns a value of type com4j.Com4jObject
-
daysLeft
int daysLeft()
Returns the number of days until the scheduled end of the cycle.
- Returns:
- Returns a value of type int
-
releaseManagementInfo
com4j.Com4jObject releaseManagementInfo()
Returns the cycle information.
Getter method for the COM property "ReleaseManagementInfo"
- Returns:
- Returns a value of type com4j.Com4jObject
-
-