Package com.luciad.view.gxy
Interface ILcdGXYLabelObstacleProvider
- All Known Implementing Classes:
TLcdGXYCompositeLabelObstacleProvider
public interface ILcdGXYLabelObstacleProvider
Provider of
TLcdGXYLabelObstacle
s: locations where label placement should be avoided.- Since:
- 7.0
-
Method Summary
Modifier and TypeMethodDescriptiongetLabelObstacles
(Graphics aGraphics, ILcdGXYView aGXYView) Returns ajava.util.List
with objects of typeTLcdGXYLabelObstacle
.
-
Method Details
-
getLabelObstacles
Returns ajava.util.List
with objects of typeTLcdGXYLabelObstacle
.- Parameters:
aGraphics
- The graphics, provided as contextual info.aGXYView
- The view, provided as contextual info.- Returns:
- The
java.util.List
withTLcdGXYLabelObstacle
objects. Implementations are allowed to return the same instance of the list for subsequent calls, to avoid recreating the same obstacles all the time. Therefore users of this method should not keep long term references, nor attempt to modify the returned list or theTLcdGXYLabelObstacle
objects inside it.
-