public interface ILabelModelParameterProvider
ILabelModel
implementations to provide possible candidate
ILabelModelParameter
s for a given label and model.
Implementations of this interface can be retrieved from the ILabelModel
's ILookup.lookup(java.lang.Class)
method. Note that not all models necessarily need to or can provide implementations of this interface.
Modifier and Type | Method and Description |
---|---|
IEnumerable<ILabelModelParameter> |
getParameters(ILabel label,
ILabelModel model)
Returns an enumerator over a set of possible
ILabelModelParameter instances that can be used for the given label
and model. |
IEnumerable<ILabelModelParameter> getParameters(ILabel label, ILabelModel model)
ILabelModelParameter
instances that can be used for the given label
and model.label
- The label instance to use.model
- The model to provide parameters for.