Package com.luciad.view.gxy.labeling
Interface ILcdGXYViewLabelPlacer.ViewLabelPlacerCallback
- Enclosing interface:
ILcdGXYViewLabelPlacer
public static interface ILcdGXYViewLabelPlacer.ViewLabelPlacerCallback
A callback interface used by
ILcdGXYViewLabelPlacer
. This callback is used to
report that labels were updated by the view label placer or that the label placing process
was ended. Methods of this callback interface should always be called on the AWT thread.- Since:
- 10.1
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Called when theILcdGXYViewLabelPlacer
has finished updating the labels.void
Called when theILcdGXYViewLabelPlacer
has updated the labels.
-
Method Details
-
labelPlacingUpdated
void labelPlacingUpdated()Called when theILcdGXYViewLabelPlacer
has updated the labels. This method is typically used to signal that intermediate results are available. When this method is called, it doesn't necessarily mean that label placing has ended (e.g when asynchronous label placing is used). So it is possible that it is called multiple times beforelabelPlacingEnded()
is called. -
labelPlacingEnded
void labelPlacingEnded()Called when theILcdGXYViewLabelPlacer
has finished updating the labels.
-