Uses of Interface
org.deegree.graphics.sld.Stroke

Packages that use Stroke
org.deegree_impl.graphics.displayelements   
org.deegree_impl.graphics.legend   
org.deegree_impl.graphics.sld   
org.deegree.graphics.sld   
 

Uses of Stroke in org.deegree_impl.graphics.displayelements
 

Methods in org.deegree_impl.graphics.displayelements with parameters of type Stroke
private  void LineStringDisplayElement_Impl.drawLine(java.awt.Graphics g, int[][] pos, Stroke stroke)
          Renders a curve to the submitted graphic context.
 

Uses of Stroke in org.deegree_impl.graphics.legend
 

Methods in org.deegree_impl.graphics.legend with parameters of type Stroke
private  java.awt.BasicStroke LegendElement_Impl.getBasicStroke(Stroke sldstroke)
          constructs a java.awt.BasicStroke for painting a LineString legend symbol.
 

Uses of Stroke in org.deegree_impl.graphics.sld
 

Classes in org.deegree_impl.graphics.sld that implement Stroke
 class Stroke_Impl
          A Stroke allows a string of line segments (or any linear geometry) to be rendered.
 

Fields in org.deegree_impl.graphics.sld declared as Stroke
private  Stroke PolygonSymbolizer_Impl.stroke
           
private  Stroke Mark_Impl.stroke
           
private  Stroke LineSymbolizer_Impl.stroke
           
private  Stroke Halo_Impl.stroke
           
 

Methods in org.deegree_impl.graphics.sld that return Stroke
static Stroke StyleFactory.createStroke()
          create a default Stroke that black, 1 pixel width, complete opaque, with round linejoin and square line cap
static Stroke StyleFactory.createStroke(double width)
          create a default stroke with the supplied width
static Stroke StyleFactory.createStroke(java.awt.Color color)
          Create a default stroke with the supplied color
static Stroke StyleFactory.createStroke(java.awt.Color color, double width)
          create a stroke with the passed width and color
static Stroke StyleFactory.createStroke(java.awt.Color color, double width, java.lang.String lineJoin, java.lang.String lineCap)
          create a stroke with color, width, linejoin type and lineCap type.
static Stroke StyleFactory.createStroke(java.awt.Color color, double width, double opacity, float[] dashArray, java.lang.String lineJoin, java.lang.String lineCap)
          create a stroke with color, width, linejoin type and lineCap type.
static Stroke StyleFactory.createStroke(java.awt.Color color, double width, float[] dashArray)
          create a dashed line of color and width
static Stroke StyleFactory.createStroke(java.awt.Color color, double width, double opacity)
          create a stroke with color, width and opacity supplied
private static Stroke SLDFactory.createStroke(org.w3c.dom.Element element)
          Creates a Stroke-instance according to the contents of the DOM-subtree starting at the given 'Stroke'-Element.
 Stroke PolygonSymbolizer_Impl.getStroke()
          A Stroke allows a string of line segments (or any linear geometry) to be rendered.
 Stroke Mark_Impl.getStroke()
          A Stroke allows a string of line segments (or any linear geometry) to be rendered.
 Stroke LineSymbolizer_Impl.getStroke()
          A Stroke allows a string of line segments (or any linear geometry) to be rendered.
 Stroke Halo_Impl.getStroke()
          Returns the underlying Stroke-instance.
 

Methods in org.deegree_impl.graphics.sld with parameters of type Stroke
static Mark StyleFactory.createMark(java.lang.String wellKnownName, Fill fill, Stroke stroke)
          create a mark with the supplied fill and stroke
static Halo StyleFactory.createHalo(Fill fill, Stroke stroke, double radius)
          wrapper round StyleFactory method to create halo
static LineSymbolizer StyleFactory.createLineSymbolizer(Stroke stroke)
          create a LineSymbolizer
static LineSymbolizer StyleFactory.createLineSymbolizer(Stroke stroke, java.lang.String geometryPropertyName)
          create a LineSymbolizer
static LineSymbolizer StyleFactory.createLineSymbolizer(Stroke stroke, java.lang.String geometryPropertyName, double min, double max)
          create a LineSymbolizer
static PolygonSymbolizer StyleFactory.createPolygonSymbolizer(Stroke stroke, Fill fill)
          create a polygon symbolizer
static PolygonSymbolizer StyleFactory.createPolygonSymbolizer(Stroke stroke, Fill fill, java.lang.String geometryPropertyName)
          create a polygon symbolizer
static PolygonSymbolizer StyleFactory.createPolygonSymbolizer(Stroke stroke, Fill fill, java.lang.String geometryPropertyName, double min, double max)
          create a polygon symbolizer
 void PolygonSymbolizer_Impl.setStroke(Stroke stroke)
          sets the
 void Mark_Impl.setStroke(Stroke stroke)
          sets
 void LineSymbolizer_Impl.setStroke(Stroke stroke)
          sets the
 void Halo_Impl.setStroke(Stroke stroke)
          Sets the underlying Stroke-instance.
 

Constructors in org.deegree_impl.graphics.sld with parameters of type Stroke
PolygonSymbolizer_Impl(Fill fill, Stroke stroke, Geometry geometry, double min, double max)
          constructor initializing the class with the
Mark_Impl(java.lang.String wellKnownName, Stroke stroke, Fill fill)
          constructor initializing the class with the
LineSymbolizer_Impl(Stroke stroke, Geometry geometry, double min, double max)
          constructor initializing the class with the
Halo_Impl(ParameterValueType radius, Fill fill, Stroke stroke)
          Create a new Halo-instance.
 

Uses of Stroke in org.deegree.graphics.sld
 

Methods in org.deegree.graphics.sld that return Stroke
 Stroke PolygonSymbolizer.getStroke()
          A Stroke allows a string of line segments (or any linear geometry) to be rendered.
 Stroke Mark.getStroke()
          A Stroke allows a string of line segments (or any linear geometry) to be rendered.
 Stroke LineSymbolizer.getStroke()
          A Stroke allows a string of line segments (or any linear geometry) to be rendered.
 Stroke Halo.getStroke()
          Returns the underlying Stroke-instance used to draw the boundary of the halo.
 

Methods in org.deegree.graphics.sld with parameters of type Stroke
 void PolygonSymbolizer.setStroke(Stroke stroke)
          Sets the Stroke
 void Mark.setStroke(Stroke stroke)
          Sets the
 void LineSymbolizer.setStroke(Stroke stroke)
          Sets the Stroke.
 void Halo.setStroke(Stroke stroke)
          Sets the Stroke for the Halo.