Interface WorkItem
-
- All Superinterfaces:
CanRender<Renderer<? extends Renderer<?>>>
,HasFields
,HasReference<ModelEntityReference>
,ModelEntity
,ModelEntityBase<WorkItem,WorkItemReference>
,ModelObject
,ModelObjectBase<WorkItem,WorkItemReference>
- All Known Subinterfaces:
UpdatableWorkItem
public interface WorkItem extends ModelObjectBase<WorkItem,WorkItemReference>
- Since:
- 3.9.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description WorkItemPermissions
can()
WorkItemFields
fields()
com.polarion.alm.tracker.model.IWorkItem
getOldApi()
UpdatableWorkItem
getUpdatable(WriteTransaction transaction)
WorkItemRenderer
render()
TestCase
testCase()
Returns test case specific view of this work item.-
Methods inherited from interface com.polarion.alm.shared.api.model.ModelEntity
equals, hashCode, isUnresolvable, transaction
-
Methods inherited from interface com.polarion.alm.shared.api.model.ModelObject
copyFieldsTo, forget, label, resolve
-
Methods inherited from interface com.polarion.alm.shared.api.model.ModelObjectBase
getReference, getReferenceToCurrent, history
-
-
-
-
Method Detail
-
getUpdatable
@NotNull UpdatableWorkItem getUpdatable(@NotNull WriteTransaction transaction)
- Specified by:
getUpdatable
in interfaceModelObject
- Specified by:
getUpdatable
in interfaceModelObjectBase<WorkItem,WorkItemReference>
-
fields
@NotNull WorkItemFields fields()
- Specified by:
fields
in interfaceHasFields
- Specified by:
fields
in interfaceModelObject
-
getOldApi
@NotNull @GwtIncompatible com.polarion.alm.tracker.model.IWorkItem getOldApi()
- Specified by:
getOldApi
in interfaceModelObject
-
render
@NotNull WorkItemRenderer render()
-
can
@NotNull WorkItemPermissions can()
- Specified by:
can
in interfaceModelEntity
- Specified by:
can
in interfaceModelObject
- Since:
- 3.9.1
-
testCase
@NotNull TestCase testCase()
Returns test case specific view of this work item.- Since:
- 3.9.2
-
-