| Modifier and Type | Method and Description |
|---|---|
java.util.List<? extends IPlan> |
IProject.getAllPlans()
Returns all construction plans of the selected project sorted by
their plan names
|
java.util.List<? extends IPlan> |
IProject.getAllPlansForHistoryItem(IHistoryEntry historyEntry)
Returns all plans which have been modified the last time with the
commit identified by the history item.
|
java.util.List<? extends IPlan> |
IProject.getAllPlansInDefinedOrder()
Returns all construction plans of the selected project in the order
they occur in the project
|
java.util.List<? extends IPlan> |
IFolder.getAllPlansOfSubTree()
Returns all plans of the folder and all sub folders.
|
java.util.List<? extends IPlan> |
IFolder.getAllPlansOfSubTreeWithCategory(java.lang.String categoryID)
Returns all plans of the folder and all sub folders that belong to
the specified category.
|
java.util.List<? extends IPlan> |
IFolder.getAllPlansOfSubTreeWithDefaultCategory()
Returns all plans of the folder and all sub folders that belong to
the default category.
|
java.util.List<? extends IPlan> |
IModelElement.getOccurrences()
Returns all plans on which the current unique element is displayed.
|
java.util.List<? extends IPlan> |
IFolder.getPlans()
Returns the plans of this folder.
|
java.util.List<? extends IPlan> |
IFolder.getPlansSortedBy(java.lang.String propertyID)
Returns all plans sorted by the specified property.
|
java.util.List<? extends IPlan> |
IFolder.getPlansWithCategory(java.lang.String categoryID)
Returns the plans of this folder that belong to the specified
category.
|
java.util.List<? extends IPlan> |
IFolder.getPlansWithCategorySortedBy(java.lang.String categoryID,
java.lang.String propertyID)
Returns all plans that belong to the specified category sorted by the
specified property.
|
java.util.List<? extends IPlan> |
IFolder.getPlansWithDefaultCategory()
Returns the plans of this folder that belong to the default category.
|
java.util.List<? extends IPlan> |
IFolder.getPlansWithDefaultCategorySortedBy(java.lang.String propertyID)
Returns all plans that belong to the default category sorted by the
specified property.
|
java.util.List<? extends IPlan> |
IProject.getRootPlans()
Returns the root plans of the project.
|
| Modifier and Type | Method and Description |
|---|---|
java.util.List<? extends IModelElement> |
IModelElement.getCausallyDirectlyPrecedingModelElementsOnPlan(IPlan plan)
Returns all model elements which are causally directly preceeding
this model element on the specified plan.
|
java.util.List<? extends IModelElement> |
IModelElement.getCausallyDirectlySucceedingModelElementsOnPlan(IPlan plan)
Returns all model elements which are causally directly preceded by
this model element on the specified plan.
|
java.util.List<? extends IModelElement> |
IModelElement.getCausallyPrecedingModelElementsOnPlan(IPlan plan)
Returns all model elements which are causally preceding this model
element on the specified plan.
|
java.util.List<? extends IModelElement> |
IModelElement.getCausallySucceedingModelElementsOnPlan(IPlan plan)
Returns all model elements which are causally preceded by this model
element on the specified plan.
|
java.util.List<? extends IModelElement> |
IModelElement.getCommunicatingFunctionsOnPlan(IPlan plan)
Returns all communicating functions on the specified plan, i.e.
|
java.util.List<? extends IModelElement> |
IModelElement.getContainedModelElementsOnPlan(IPlan plan)
Returns all model elements which are contained directly or indirectly
in this model element on the specified plan.
|
java.util.List<? extends IModelElement> |
IModelElement.getContainerModelElementsOnPlan(IPlan plan)
Returns all model elements which directly or indirectly contain this
model element on the specified plan.
|
java.util.List<? extends IModelElement> |
IModelElement.getDirectContainerModelElementsOnPlan(IPlan plan)
Returns all model elements which directly contain this model element
on the specified plan.
|
java.util.List<? extends IModelElement> |
IModelElement.getDirectlyContainedModelElementsOnPlan(IPlan plan)
Returns all model elements which are contained directly in this model
element on the specified plan.
|
java.util.List<? extends IModelElement> |
IModelElement.getInfluencedInfosOnPlan(IPlan plan)
Returns all influenced infos on the specified plan, i.e. infos which
are connected via transitive writing accesses.
|
java.util.List<? extends IModelElement> |
IModelElement.getInfluencingInfosOnPlan(IPlan plan)
Returns all influencing infos on the specified plan, i.e. infos which
are connected via transitive reading accesses.
|
java.util.List<? extends IModelElement> |
IModelElement.getModifiedInfosOnPlan(IPlan plan)
Returns all modified infos on the specified plan.
|
java.util.List<? extends IModelElement> |
IModelElement.getModifyingFunctionsOnPlan(IPlan plan)
Returns all modifying functions on the specified plan.
|
java.util.List<? extends IModelElement> |
IModelElement.getReadInfosOnPlan(IPlan plan)
Returns all read infos on the specified plan.
|
java.util.List<? extends IModelElement> |
IModelElement.getReadingFunctionsOnPlan(IPlan plan)
Returns all reading functions on the specified plan.
|
java.util.List<IModelElement> |
IModelElement.getReceivingFunctionsOnPlan(IPlan plan)
Returns all receiving functions on the specified plan, i.e. functions
which are connected via transitive writing accesses.
|
java.util.List<? extends IModelElement> |
IModelElement.getRelatedInfosOnPlan(IPlan plan)
Returns all related infos on the specified plan, i.e. infos which are
connected via transitive reading AND writing accesses.
|
java.util.List<? extends IModelElement> |
IModelElement.getSendingFunctionsOnPlan(IPlan plan)
Returns all sending functions on the specified plan, i.e. functions
which are connected via transitive reading accesses.
|
java.util.List<? extends IModelElement> |
IModelElement.getWritingFunctionsOnPlan(IPlan plan)
Returns all writing functions on the specified plan.
|
java.util.List<? extends IModelElement> |
IModelElement.getWrittenInfosOnPlan(IPlan plan)
Returns all written infos on the specified plan.
|