Package gov.nasa.worldwind.layers
Class GraticuleRenderingParams
- java.lang.Object
-
- gov.nasa.worldwind.avlist.AVListImpl
-
- gov.nasa.worldwind.layers.GraticuleRenderingParams
-
- All Implemented Interfaces:
AVList
public class GraticuleRenderingParams extends AVListImpl
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringKEY_DRAW_LABELSstatic java.lang.StringKEY_DRAW_LINESstatic java.lang.StringKEY_LABEL_COLORstatic java.lang.StringKEY_LABEL_FONTstatic java.lang.StringKEY_LINE_COLORstatic java.lang.StringKEY_LINE_CONFORMANCEstatic java.lang.StringKEY_LINE_STYLEstatic java.lang.StringKEY_LINE_WIDTHstatic java.lang.StringVALUE_LINE_STYLE_DASHEDstatic java.lang.StringVALUE_LINE_STYLE_DOTTEDstatic java.lang.StringVALUE_LINE_STYLE_SOLID
-
Constructor Summary
Constructors Constructor Description GraticuleRenderingParams()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.awt.ColorgetLabelColor()java.awt.FontgetLabelFont()java.awt.ColorgetLineColor()java.lang.StringgetLineStyle()doublegetLineWidth()booleanisDrawLabels()booleanisDrawLines()voidsetDrawLabels(boolean drawLabels)voidsetDrawLines(boolean drawLines)voidsetLabelColor(java.awt.Color color)voidsetLabelFont(java.awt.Font font)voidsetLineColor(java.awt.Color color)voidsetLineStyle(java.lang.String lineStyle)voidsetLineWidth(double lineWidth)-
Methods inherited from class gov.nasa.worldwind.avlist.AVListImpl
addPropertyChangeListener, addPropertyChangeListener, clearList, copy, firePropertyChange, firePropertyChange, getBooleanValue, getBooleanValue, getChangeSupport, getDoubleValue, getDoubleValue, getEntries, getIntegerValue, getIntegerValue, getLongValue, getLongValue, getRestorableStateForAVPair, getStringValue, getStringValue, getStringValue, getValue, getValues, hasKey, removeKey, removePropertyChangeListener, removePropertyChangeListener, setValue, setValues
-
-
-
-
Field Detail
-
KEY_DRAW_LINES
public static final java.lang.String KEY_DRAW_LINES
- See Also:
- Constant Field Values
-
KEY_LINE_COLOR
public static final java.lang.String KEY_LINE_COLOR
- See Also:
- Constant Field Values
-
KEY_LINE_WIDTH
public static final java.lang.String KEY_LINE_WIDTH
- See Also:
- Constant Field Values
-
KEY_LINE_STYLE
public static final java.lang.String KEY_LINE_STYLE
- See Also:
- Constant Field Values
-
KEY_LINE_CONFORMANCE
public static final java.lang.String KEY_LINE_CONFORMANCE
- See Also:
- Constant Field Values
-
KEY_DRAW_LABELS
public static final java.lang.String KEY_DRAW_LABELS
- See Also:
- Constant Field Values
-
KEY_LABEL_COLOR
public static final java.lang.String KEY_LABEL_COLOR
- See Also:
- Constant Field Values
-
KEY_LABEL_FONT
public static final java.lang.String KEY_LABEL_FONT
- See Also:
- Constant Field Values
-
VALUE_LINE_STYLE_SOLID
public static final java.lang.String VALUE_LINE_STYLE_SOLID
- See Also:
- Constant Field Values
-
VALUE_LINE_STYLE_DASHED
public static final java.lang.String VALUE_LINE_STYLE_DASHED
- See Also:
- Constant Field Values
-
VALUE_LINE_STYLE_DOTTED
public static final java.lang.String VALUE_LINE_STYLE_DOTTED
- See Also:
- Constant Field Values
-
-
Method Detail
-
isDrawLines
public boolean isDrawLines()
-
setDrawLines
public void setDrawLines(boolean drawLines)
-
getLineColor
public java.awt.Color getLineColor()
-
setLineColor
public void setLineColor(java.awt.Color color)
-
getLineWidth
public double getLineWidth()
-
setLineWidth
public void setLineWidth(double lineWidth)
-
getLineStyle
public java.lang.String getLineStyle()
-
setLineStyle
public void setLineStyle(java.lang.String lineStyle)
-
isDrawLabels
public boolean isDrawLabels()
-
setDrawLabels
public void setDrawLabels(boolean drawLabels)
-
getLabelColor
public java.awt.Color getLabelColor()
-
setLabelColor
public void setLabelColor(java.awt.Color color)
-
getLabelFont
public java.awt.Font getLabelFont()
-
setLabelFont
public void setLabelFont(java.awt.Font font)
-
-