Class TextBasedVertexStyle
- java.lang.Object
-
- org.openjump.core.ui.style.decoration.TextBasedVertexStyle
-
- All Implemented Interfaces:
ChoosableStyle
,Style
,Cloneable
- Direct Known Subclasses:
VertexZValueStyle
public abstract class TextBasedVertexStyle extends Object implements ChoosableStyle
-
-
Constructor Summary
Constructors Constructor Description TextBasedVertexStyle()
TextBasedVertexStyle(String name, Icon icon)
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description Object
clone()
Icon
getIcon()
For display.String
getName()
For display.void
initialize(Layer layer)
Called before #paint is applied to each Feature.boolean
isEnabled()
void
paint(Feature f, Graphics2D g, Viewport viewport)
protected abstract void
paint(Point2D p0, org.locationtech.jts.geom.LineString line, int index, Viewport viewport, Graphics2D graphics)
protected void
paintGeometry(org.locationtech.jts.geom.Geometry geometry, Graphics2D graphics, Viewport viewport)
protected void
paintLineString(org.locationtech.jts.geom.LineString lineString, Viewport viewport, Graphics2D graphics)
protected abstract void
paintPoint(org.locationtech.jts.geom.Point point, Viewport viewport, Graphics2D graphics)
void
setEnabled(boolean enabled)
-
-
-
Method Detail
-
paintGeometry
protected void paintGeometry(org.locationtech.jts.geom.Geometry geometry, Graphics2D graphics, Viewport viewport) throws Exception
- Throws:
Exception
-
paintLineString
protected void paintLineString(org.locationtech.jts.geom.LineString lineString, Viewport viewport, Graphics2D graphics) throws Exception
- Parameters:
lineString
- has 2 or more pointsviewport
- the viewport to paint the lineString tographics
- the graphic context- Throws:
Exception
- if an Exception occurs during painting
-
paint
protected abstract void paint(Point2D p0, org.locationtech.jts.geom.LineString line, int index, Viewport viewport, Graphics2D graphics) throws Exception
- Throws:
Exception
-
paintPoint
protected abstract void paintPoint(org.locationtech.jts.geom.Point point, Viewport viewport, Graphics2D graphics) throws Exception
- Throws:
Exception
-
initialize
public void initialize(Layer layer)
Description copied from interface:Style
Called before #paint is applied to each Feature.- Specified by:
initialize
in interfaceStyle
- Parameters:
layer
- the layer on which to apply this style
-
paint
public void paint(Feature f, Graphics2D g, Viewport viewport) throws Exception
-
setEnabled
public void setEnabled(boolean enabled)
- Specified by:
setEnabled
in interfaceStyle
-
isEnabled
public boolean isEnabled()
-
getName
public String getName()
Description copied from interface:ChoosableStyle
For display.- Specified by:
getName
in interfaceChoosableStyle
- Returns:
- the name of this Style
-
getIcon
public Icon getIcon()
Description copied from interface:ChoosableStyle
For display. 20 x 20 pixels.- Specified by:
getIcon
in interfaceChoosableStyle
- Returns:
- an Icon representing this Style
-
-