Interface ILspLabelDependencyProvider
public interface ILspLabelDependencyProvider
Interface that makes it possible to specify dependencies between
labels
.
The nature of this dependency is not specified in this interface, and should be correctly
specified by users of this interface.- Since:
- 2012.0
-
Method Summary
Modifier and TypeMethodDescriptionvoid
getDependingLabels
(TLspLabelID aLabel, TLspPaintState aPaintState, TLspContext aContext, List<TLspLabelID> aDependingIdentifiersSFCT) This method adds allTLspLabelID
s that depend on the givenTLspLabelID
to the given list.
-
Method Details
-
getDependingLabels
void getDependingLabels(TLspLabelID aLabel, TLspPaintState aPaintState, TLspContext aContext, List<TLspLabelID> aDependingIdentifiersSFCT) This method adds allTLspLabelID
s that depend on the givenTLspLabelID
to the given list.- Parameters:
aLabel
- a label.aPaintState
- the paint state.aContext
- the context.aDependingIdentifiersSFCT
- the list to which all depending representations are added.
-