Class LineStringSegmentStyle
- java.lang.Object
-
- com.vividsolutions.jump.workbench.ui.renderer.style.LineStringStyle
-
- com.vividsolutions.jump.workbench.ui.renderer.style.LineStringSegmentStyle
-
- All Implemented Interfaces:
ChoosableStyle,Style,Cloneable
- Direct Known Subclasses:
ArrowLineStringSegmentStyle,MetricsLineStringSegmentStyle,SegmentDownhillArrowStyle
public abstract class LineStringSegmentStyle extends LineStringStyle implements ChoosableStyle
-
-
Field Summary
Fields Modifier and Type Field Description protected Iconiconprotected Stringname-
Fields inherited from class com.vividsolutions.jump.workbench.ui.renderer.style.LineStringStyle
enabled, fillColorWithAlpha, lineColorWithAlpha, stroke
-
-
Constructor Summary
Constructors Constructor Description LineStringSegmentStyle(String name, Icon icon)
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description IcongetIcon()For display. 20 x 20 pixels.StringgetName()For display.protected abstract voidpaint(Point2D p0, Point2D p1, Viewport viewport, Graphics2D graphics)protected voidpaint(org.locationtech.jts.geom.Coordinate p0, org.locationtech.jts.geom.Coordinate p1, Viewport viewport, Graphics2D graphics)protected voidpaintLineString(org.locationtech.jts.geom.LineString lineString, Viewport viewport, Graphics2D graphics)-
Methods inherited from class com.vividsolutions.jump.workbench.ui.renderer.style.LineStringStyle
clone, initialize, isEnabled, paint, paintGeometry, setEnabled
-
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.vividsolutions.jump.workbench.ui.renderer.style.Style
clone, initialize, isEnabled, paint, setEnabled
-
-
-
-
Method Detail
-
paintLineString
protected void paintLineString(org.locationtech.jts.geom.LineString lineString, Viewport viewport, Graphics2D graphics) throws Exception- Specified by:
paintLineStringin classLineStringStyle- 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 void paint(org.locationtech.jts.geom.Coordinate p0, org.locationtech.jts.geom.Coordinate p1, Viewport viewport, Graphics2D graphics) throws Exception- Throws:
Exception
-
paint
protected abstract void paint(Point2D p0, Point2D p1, Viewport viewport, Graphics2D graphics) throws Exception
- Throws:
Exception
-
getName
public String getName()
Description copied from interface:ChoosableStyleFor display.- Specified by:
getNamein interfaceChoosableStyle- Returns:
- the name of this Style
-
getIcon
public Icon getIcon()
Description copied from interface:ChoosableStyleFor display. 20 x 20 pixels.- Specified by:
getIconin interfaceChoosableStyle- Returns:
- an Icon representing this Style
-
-