Class BasicStyle
- java.lang.Object
-
- com.vividsolutions.jump.workbench.ui.renderer.style.BasicStyle
-
- All Implemented Interfaces:
AlphaSetting
,Style
,Cloneable
,SLDImporter.FillStyle
,SLDImporter.StrokeFillStyle
,SLDImporter.StrokeStyle
- Direct Known Subclasses:
XBasicStyle
public class BasicStyle extends Object implements Style, SLDImporter.StrokeFillStyle, AlphaSetting
-
-
Field Summary
Fields Modifier and Type Field Description static Color
DEFAULT_FILL_COLOR
static BasicStroke
DEFAULT_FILL_STROKE
static Color
DEFAULT_LINE_COLOR
static String
RGB_ATTRIBUTE_NAME
-
Constructor Summary
Constructors Constructor Description BasicStyle()
BasicStyle(Color fillColor)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Object
clone()
Uses Object.clone() method which performs a shallow copy of this object, creating a new instance of the same class and copying attribute values of this object to the clone.int
getAlpha()
Color
getFeatureColor(Feature f)
- Giuseppe Aruta 11-June - 2012 - added code from SkyJUMP to enable color chooser plugIn - - Original comments from SkyJUMP developers - Looks for an Attribute field that contains the RGB color code and returns it or null if the RGB hex string is empty or ill-formed.Color
getFillColor()
Paint
getFillPattern()
Color
getLineColor()
String
getLinePattern()
BasicStroke
getLineStroke()
int
getLineWidth()
boolean
getRenderingVertices()
boolean
hasInteriorBorder()
void
initialize(Layer layer)
Called before #paint is applied to each Feature.boolean
isEnabled()
boolean
isRenderingFill()
boolean
isRenderingFillPattern()
boolean
isRenderingLine()
boolean
isRenderingLinePattern()
void
paint(Feature f, Graphics2D g, Viewport viewport)
void
setAlpha(int alpha)
void
setEnabled(boolean enabled)
void
setFillColor(Color fillColor)
BasicStyle
setFillPattern(Paint fillPattern)
Remember to call #setRenderingFillPattern(true).void
setFractionalLineWidth(float lineWidth)
void
setInteriorBorder(boolean interiorBorder)
void
setLineColor(Color lineColor)
BasicStyle
setLinePattern(String linePattern)
The actual dash pattern used internally will be the given dash pattern multiplied by the line length.void
setLineWidth(int lineWidth)
void
setRenderingFill(boolean renderingFill)
BasicStyle
setRenderingFillPattern(boolean renderingFillPattern)
void
setRenderingLine(boolean renderingLine)
BasicStyle
setRenderingLinePattern(boolean renderingLinePattern)
void
setRenderingVertices(boolean renderingVertices)
static float[]
toArray(String linePattern, float lineWidth)
-
-
-
Field Detail
-
RGB_ATTRIBUTE_NAME
public static final String RGB_ATTRIBUTE_NAME
- See Also:
- Constant Field Values
-
DEFAULT_FILL_COLOR
public static final Color DEFAULT_FILL_COLOR
-
DEFAULT_LINE_COLOR
public static final Color DEFAULT_LINE_COLOR
-
DEFAULT_FILL_STROKE
public static final BasicStroke DEFAULT_FILL_STROKE
-
-
Constructor Detail
-
BasicStyle
public BasicStyle(Color fillColor)
-
BasicStyle
public BasicStyle()
-
-
Method Detail
-
isRenderingFillPattern
public boolean isRenderingFillPattern()
-
setRenderingFillPattern
public BasicStyle setRenderingFillPattern(boolean renderingFillPattern)
-
getFillPattern
public Paint getFillPattern()
-
setFillPattern
public BasicStyle setFillPattern(Paint fillPattern)
Remember to call #setRenderingFillPattern(true).
-
getLinePattern
public String getLinePattern()
-
getRenderingVertices
public boolean getRenderingVertices()
-
setRenderingVertices
public void setRenderingVertices(boolean renderingVertices)
-
setLinePattern
public BasicStyle setLinePattern(String linePattern)
The actual dash pattern used internally will be the given dash pattern multiplied by the line length. Remember to call #setRenderingLinePattern(true).- Specified by:
setLinePattern
in interfaceSLDImporter.StrokeStyle
- Parameters:
linePattern
- e.g. "5,2,3,2"- Returns:
- a basic style
-
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
-
setEnabled
public void setEnabled(boolean enabled)
- Specified by:
setEnabled
in interfaceStyle
-
isEnabled
public boolean isEnabled()
-
paint
public void paint(Feature f, Graphics2D g, Viewport viewport) throws Exception
-
clone
public Object clone()
Uses Object.clone() method which performs a shallow copy of this object, creating a new instance of the same class and copying attribute values of this object to the clone.
-
isRenderingFill
public boolean isRenderingFill()
-
isRenderingLine
public boolean isRenderingLine()
-
isRenderingLinePattern
public boolean isRenderingLinePattern()
-
setRenderingFill
public void setRenderingFill(boolean renderingFill)
-
setRenderingLine
public void setRenderingLine(boolean renderingLine)
-
setRenderingLinePattern
public BasicStyle setRenderingLinePattern(boolean renderingLinePattern)
- Specified by:
setRenderingLinePattern
in interfaceSLDImporter.StrokeStyle
- Parameters:
renderingLinePattern
- whether to use a LinePattern or not- Returns:
- a basic style
-
setFillColor
public void setFillColor(Color fillColor)
- Specified by:
setFillColor
in interfaceSLDImporter.FillStyle
- Parameters:
fillColor
- a Color
-
setLineColor
public void setLineColor(Color lineColor)
- Specified by:
setLineColor
in interfaceSLDImporter.StrokeStyle
- Parameters:
lineColor
- line Color
-
setLineWidth
public void setLineWidth(int lineWidth)
- Specified by:
setLineWidth
in interfaceSLDImporter.StrokeStyle
- Parameters:
lineWidth
- line width
-
setFractionalLineWidth
public void setFractionalLineWidth(float lineWidth)
-
hasInteriorBorder
public boolean hasInteriorBorder()
-
setInteriorBorder
public void setInteriorBorder(boolean interiorBorder)
-
toArray
public static float[] toArray(String linePattern, float lineWidth)
-
getAlpha
public int getAlpha()
- Specified by:
getAlpha
in interfaceAlphaSetting
- Returns:
- 0-255 (255 is opaque)
-
getFillColor
public Color getFillColor()
-
getLineColor
public Color getLineColor()
-
getLineWidth
public int getLineWidth()
-
setAlpha
public void setAlpha(int alpha)
- Specified by:
setAlpha
in interfaceAlphaSetting
- Specified by:
setAlpha
in interfaceSLDImporter.FillStyle
- Specified by:
setAlpha
in interfaceSLDImporter.StrokeStyle
- Parameters:
alpha
- 0-255 (255 is opaque)
-
getLineStroke
public BasicStroke getLineStroke()
-
getFeatureColor
public Color getFeatureColor(Feature f)
- Giuseppe Aruta 11-June - 2012 - added code from SkyJUMP to enable color chooser plugIn - - Original comments from SkyJUMP developers - Looks for an Attribute field that contains the RGB color code and returns it or null if the RGB hex string is empty or ill-formed.- Parameters:
f
- theFeature
containing the RGB Attribute to be parsed.- Returns:
- the
Color
represented by the R_B_G hex value with the current Alpha value inserted. Warning: returns null in many "normal" cases.
-
-