Class ReferencedImageStyle
- java.lang.Object
-
- com.vividsolutions.jump.workbench.imagery.ReferencedImageStyle
-
- All Implemented Interfaces:
AlphaSetting
,Style
,Cloneable
public class ReferencedImageStyle extends Object implements Style, AlphaSetting
A JUMP style that will paint images
-
-
Constructor Summary
Constructors Constructor Description ReferencedImageStyle()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Object
clone()
int
getAlpha()
ImageryLayerDataset
getImageryLayerDataset()
void
initialize(Layer l)
Called before #paint is applied to each Feature.boolean
isEnabled()
void
paint(Feature f, Graphics2D g, Viewport viewport)
void
setAlpha(int alpha)
void
setEnabled(boolean enabled)
-
-
-
Method Detail
-
paint
public void paint(Feature f, Graphics2D g, Viewport viewport) throws Exception
-
initialize
public void initialize(Layer l)
Description copied from interface:Style
Called before #paint is applied to each Feature.- Specified by:
initialize
in interfaceStyle
- Parameters:
l
- the layer on which to apply this style
-
setEnabled
public void setEnabled(boolean enabled)
- Specified by:
setEnabled
in interfaceStyle
-
isEnabled
public boolean isEnabled()
-
getImageryLayerDataset
public ImageryLayerDataset getImageryLayerDataset()
-
getAlpha
public int getAlpha()
- Specified by:
getAlpha
in interfaceAlphaSetting
-
setAlpha
public void setAlpha(int alpha)
- Specified by:
setAlpha
in interfaceAlphaSetting
-
-