Package com.luciad.view
Interface ILcdLabelDependencyProvider
public interface ILcdLabelDependencyProvider
Interface that makes it possible to specify dependencies between labels. The nature of this
dependency is not specified in the interface, and should be correctly specified by implementations
using it.
- Since:
- 10.1
-
Method Summary
Modifier and TypeMethodDescriptionvoid
getDependingLabelsSFCT
(TLcdLabelIdentifier aLabel, List<TLcdLabelIdentifier> aDependingLabelsSFCT) This method adds allTLcdLabelIdentifier
objects that depend on the givenTLcdLabelIdentifier
objects to the given list.
-
Method Details
-
getDependingLabelsSFCT
void getDependingLabelsSFCT(TLcdLabelIdentifier aLabel, List<TLcdLabelIdentifier> aDependingLabelsSFCT) This method adds allTLcdLabelIdentifier
objects that depend on the givenTLcdLabelIdentifier
objects to the given list.- Parameters:
aLabel
- aTLcdLabelIdentifier
.aDependingLabelsSFCT
- the list to which theTLcdLabelIdentifier
objects that depend on the givenTLcdLabelIdentifier
are added.
-