Interface IMilestone
-
- All Superinterfaces:
com4j.Com4jObject
,IBaseField
,IBaseFieldEx
,IObjectLockingSupport
public interface IMilestone extends IBaseFieldEx
For HP use. Represents a Milestone.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
description()
The milestone's description.void
description(java.lang.String pVal)
The milestone's description.java.util.Date
dueDate()
The milestone's due date.void
dueDate(java.util.Date pVal)
The milestone's due date.boolean
hasKPIs()
Checks whether the Milestone has at least one KPI.boolean
hasMilestoneScopeItems()
Checks whether the Milestone has at least one MilestoneScopeItem.com4j.Com4jObject
kpiFactory()
The milestone's KPI Factory.com4j.Com4jObject
milestoneScopeItemFactory()
The milestone's MilestoneScopeItem Factory.java.lang.String
name()
The milestone's name.void
name(java.lang.String pVal)
The milestone's name.com4j.Com4jObject
parent()
The milestone's parent release.void
rescheduleTimePeriod(java.util.Date newStartDate, java.util.Date newEndDate)
Reschedule start and end dates of the milestone.java.util.Date
startDate()
The milestone's start date.void
startDate(java.util.Date pVal)
The milestone's start date.-
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.v16.otaclient.IBaseField
autoPost, autoPost, field, field, id, modified, post, refresh, undo, virtual
-
Methods inherited from interface step.repository.alm.v16.otaclient.IBaseFieldEx
attachments, hasAttachment, history
-
Methods inherited from interface step.repository.alm.v16.otaclient.IObjectLockingSupport
isLocked, lockObject, unLockObject
-
-
-
-
Method Detail
-
name
java.lang.String name()
The milestone'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 milestone's name.
Setter method for the COM property "Name"
- Parameters:
pVal
- Mandatory java.lang.String parameter.
-
description
java.lang.String description()
The milestone's description.
Getter method for the COM property "Description"
- Returns:
- Returns a value of type java.lang.String
-
description
void description(java.lang.String pVal)
The milestone's description.
Setter method for the COM property "Description"
- Parameters:
pVal
- Mandatory java.lang.String parameter.
-
dueDate
java.util.Date dueDate()
The milestone's due date.
Getter method for the COM property "DueDate"
- Returns:
- Returns a value of type java.util.Date
-
dueDate
void dueDate(java.util.Date pVal)
The milestone's due date.
Setter method for the COM property "DueDate"
- Parameters:
pVal
- Mandatory java.util.Date parameter.
-
startDate
java.util.Date startDate()
The milestone'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 milestone's start date.
Setter method for the COM property "StartDate"
- Parameters:
pVal
- Mandatory java.util.Date parameter.
-
parent
com4j.Com4jObject parent()
The milestone's parent release.
Getter method for the COM property "Parent"
- Returns:
- Returns a value of type com4j.Com4jObject
-
kpiFactory
com4j.Com4jObject kpiFactory()
The milestone's KPI Factory.
Getter method for the COM property "KPIFactory"
- Returns:
- Returns a value of type com4j.Com4jObject
-
milestoneScopeItemFactory
com4j.Com4jObject milestoneScopeItemFactory()
The milestone's MilestoneScopeItem Factory.
Getter method for the COM property "MilestoneScopeItemFactory"
- Returns:
- Returns a value of type com4j.Com4jObject
-
hasMilestoneScopeItems
boolean hasMilestoneScopeItems()
Checks whether the Milestone has at least one MilestoneScopeItem.
Getter method for the COM property "HasMilestoneScopeItems"
- Returns:
- Returns a value of type boolean
-
hasKPIs
boolean hasKPIs()
Checks whether the Milestone has at least one KPI.
Getter method for the COM property "HasKPIs"
- Returns:
- Returns a value of type boolean
-
rescheduleTimePeriod
void rescheduleTimePeriod(java.util.Date newStartDate, java.util.Date newEndDate)
Reschedule start and end dates of the milestone.
- Parameters:
newStartDate
- Mandatory java.util.Date parameter.newEndDate
- Mandatory java.util.Date parameter.
-
-