Uses of Class
org.apache.batik.gvt.GraphicsNodeRenderContext

Packages that use GraphicsNodeRenderContext
org.apache.batik.bridge Provides an API for mapping and maintaining consistency between the SVG DOM tree and the GVT tree. 
org.apache.batik.gvt Contains all of the interfaces for describing and painting vector graphics as Java objects. 
org.apache.batik.gvt.event Provides interfaces and classes for dealing with different types of events fired by GVT graphics nodes. 
org.apache.batik.gvt.filter Contains all of the interfaces for describing a set of standard image processing filters Java objects. 
org.apache.batik.gvt.font   
org.apache.batik.gvt.renderer   
org.apache.batik.gvt.text   
org.apache.batik.swing.gvt   
org.apache.batik.transcoder.print   
 

Uses of GraphicsNodeRenderContext in org.apache.batik.bridge
 

Fields in org.apache.batik.bridge declared as GraphicsNodeRenderContext
protected  GraphicsNodeRenderContext BridgeContext.rc
          The current GraphicsNodeRenderContext for GraphicsNode.
 

Methods in org.apache.batik.bridge that return GraphicsNodeRenderContext
 GraphicsNodeRenderContext BridgeContext.getGraphicsNodeRenderContext()
          Returns a GraphicsNodeRenderContext to use.
 

Methods in org.apache.batik.bridge with parameters of type GraphicsNodeRenderContext
protected static java.awt.geom.Rectangle2D SVGUtilities.convertRegion(java.lang.String xStr, java.lang.String yStr, java.lang.String wStr, java.lang.String hStr, short unitsType, GraphicsNode targetNode, UnitProcessor.Context uctx, GraphicsNodeRenderContext rc)
          Returns a rectangle that represents the region defined by the specified coordinates.
static java.awt.geom.AffineTransform SVGUtilities.toObjectBBox(java.awt.geom.AffineTransform Tx, GraphicsNode node, GraphicsNodeRenderContext rc)
          Returns an AffineTransform to move to the objectBoundingBox coordinate system.
static java.awt.geom.Rectangle2D SVGUtilities.toObjectBBox(java.awt.geom.Rectangle2D r, GraphicsNode node, GraphicsNodeRenderContext rc)
          Returns the specified a Rectangle2D move to the objectBoundingBox coordinate system of the specified graphics node.
protected  void BridgeContext.setGraphicsNodeRenderContext(GraphicsNodeRenderContext rc)
          Sets the GraphicsNodeRenderContext to use.
 

Constructors in org.apache.batik.bridge with parameters of type GraphicsNodeRenderContext
BridgeContext(UserAgent userAgent, GraphicsNodeRenderContext rc)
          Constructs a new bridge context.
BridgeContext(UserAgent userAgent, GraphicsNodeRenderContext rc, DocumentLoader loader)
          Constructs a new bridge context.
BridgeContext(UserAgent userAgent, GraphicsNodeRenderContext rc, InterpreterPool interpreterPool, DocumentLoader documentLoader)
          Constructs a new bridge context.
 

Uses of GraphicsNodeRenderContext in org.apache.batik.gvt
 

Methods in org.apache.batik.gvt that return GraphicsNodeRenderContext
static GraphicsNodeRenderContext GraphicsNodeRenderContext.getGraphicsNodeRenderContext(java.awt.image.renderable.RenderContext ctx)
          Given a RenderContext, this convenience method will build a GraphicsNodeRenderContext
static GraphicsNodeRenderContext GraphicsNodeRenderContext.getGraphicsNodeRenderContext(java.awt.Graphics2D g2d)
          Given a Graphics2D, this convenience method will build a GraphicsNodeRenderContext
 

Methods in org.apache.batik.gvt with parameters of type GraphicsNodeRenderContext
 void AbstractGraphicsNode.paint(java.awt.Graphics2D g2d, GraphicsNodeRenderContext rc)
          Paints this node.
 java.awt.geom.Rectangle2D AbstractGraphicsNode.getTransformedBounds(java.awt.geom.AffineTransform txf, GraphicsNodeRenderContext rc)
          Returns the bounds of this node after applying the input transform (if any), concatenated with this node's transform (if any).
 java.awt.geom.Rectangle2D AbstractGraphicsNode.getTransformedPrimitiveBounds(java.awt.geom.AffineTransform txf, GraphicsNodeRenderContext rc)
           
 java.awt.geom.Rectangle2D AbstractGraphicsNode.getTransformedGeometryBounds(java.awt.geom.AffineTransform txf, GraphicsNodeRenderContext rc)
           
 java.awt.geom.Rectangle2D AbstractGraphicsNode.getBounds(GraphicsNodeRenderContext rc)
          Compute the rendered bounds of this node based on it's renderBounds.
 boolean AbstractGraphicsNode.contains(java.awt.geom.Point2D p, GraphicsNodeRenderContext rc)
          Returns true if the specified coordinates are inside the interior of the bounds of this node, false otherwise.
 GraphicsNode AbstractGraphicsNode.nodeHitAt(java.awt.geom.Point2D p, GraphicsNodeRenderContext rc)
          Returns the GraphicsNode containing point p if this node or one of its children is sensitive to mouse events at p.
 boolean AbstractGraphicsNode.intersects(java.awt.geom.Rectangle2D r, GraphicsNodeRenderContext rc)
          Tests if the bounds of this node intersects the interior of a specified Rectangle2D.
 void CompositeGraphicsNode.primitivePaint(java.awt.Graphics2D g2d, GraphicsNodeRenderContext rc)
          Paints this node without applying Filter, Mask, Composite and clip.
 boolean CompositeGraphicsNode.contains(java.awt.geom.Point2D p, GraphicsNodeRenderContext rc)
           
 GraphicsNode CompositeGraphicsNode.nodeHitAt(java.awt.geom.Point2D p, GraphicsNodeRenderContext rc)
           
 java.awt.geom.Rectangle2D CompositeGraphicsNode.getPrimitiveBounds(GraphicsNodeRenderContext rc)
          Returns the bounds of the area covered by this node's primitive paint.
 java.awt.geom.Rectangle2D CompositeGraphicsNode.getTransformedPrimitiveBounds(java.awt.geom.AffineTransform txf, GraphicsNodeRenderContext rc)
          Returns the bounds of the area covered by this node's primitive paint.
 java.awt.geom.Rectangle2D CompositeGraphicsNode.getGeometryBounds(GraphicsNodeRenderContext rc)
          Returns the bounds of the area covered by this node, without taking any of its rendering attribute into account, i.e., exclusive of any clipping, masking, filtering or stroking, for example.
 java.awt.geom.Rectangle2D CompositeGraphicsNode.getTransformedGeometryBounds(java.awt.geom.AffineTransform txf, GraphicsNodeRenderContext rc)
          Returns the bounds of the area covered by this node, without taking any of its rendering attribute into account, i.e., exclusive of any clipping, masking, filtering or stroking, for example.
 java.awt.Shape CompositeGraphicsNode.getOutline(GraphicsNodeRenderContext rc)
          Returns the outline of this CompositeGraphicsNode.
 void ImageNode.paint(java.awt.Graphics2D g2d, GraphicsNodeRenderContext rc)
          Paints this node if visible.
 void GraphicsNode.paint(java.awt.Graphics2D g2d, GraphicsNodeRenderContext rc)
          Paints this node.
 void GraphicsNode.primitivePaint(java.awt.Graphics2D g2d, GraphicsNodeRenderContext rc)
          Paints this node without applying Filter, Mask, Composite and clip.
 java.awt.geom.Rectangle2D GraphicsNode.getBounds(GraphicsNodeRenderContext rc)
          Returns the bounds of this node in user space.
 java.awt.geom.Rectangle2D GraphicsNode.getTransformedBounds(java.awt.geom.AffineTransform txf, GraphicsNodeRenderContext rc)
          Returns the bounds of this node after applying the input transform (if any), concatenated with this node's transform (if any).
 java.awt.geom.Rectangle2D GraphicsNode.getPrimitiveBounds(GraphicsNodeRenderContext rc)
          Returns the bounds of the area covered by this node's primitive paint.
 java.awt.geom.Rectangle2D GraphicsNode.getTransformedPrimitiveBounds(java.awt.geom.AffineTransform txf, GraphicsNodeRenderContext rc)
          Returns the bounds of this node's primitivePaint after applying the input transform (if any), concatenated with this node's transform (if any).
 java.awt.geom.Rectangle2D GraphicsNode.getGeometryBounds(GraphicsNodeRenderContext rc)
          Returns the bounds of the area covered by this node, without taking any of its rendering attribute into account, i.e., exclusive of any clipping, masking, filtering or stroking, for example.
 java.awt.geom.Rectangle2D GraphicsNode.getTransformedGeometryBounds(java.awt.geom.AffineTransform txf, GraphicsNodeRenderContext rc)
          Returns the bounds of the area covered by this node, without taking any of its rendering attribute into account, i.e., exclusive of any clipping, masking, filtering or stroking, for example.
 boolean GraphicsNode.contains(java.awt.geom.Point2D p, GraphicsNodeRenderContext rc)
          Tests if the specified Point2D is inside the boundary of this node.
 boolean GraphicsNode.intersects(java.awt.geom.Rectangle2D r, GraphicsNodeRenderContext rc)
          Tests if the interior of this node intersects the interior of a specified Rectangle2D.
 GraphicsNode GraphicsNode.nodeHitAt(java.awt.geom.Point2D p, GraphicsNodeRenderContext rc)
          Returns the GraphicsNode containing point p if this node or one of its children is sensitive to mouse events at p.
 java.awt.Shape GraphicsNode.getOutline(GraphicsNodeRenderContext rc)
          Returns the outline of this node.
 void ProxyGraphicsNode.primitivePaint(java.awt.Graphics2D g2d, GraphicsNodeRenderContext rc)
          Paints this node without applying Filter, Mask, Composite and clip.
 java.awt.geom.Rectangle2D ProxyGraphicsNode.getPrimitiveBounds(GraphicsNodeRenderContext rc)
          Returns the bounds of the area covered by this node's primitive paint.
 java.awt.geom.Rectangle2D ProxyGraphicsNode.getGeometryBounds(GraphicsNodeRenderContext rc)
          Returns the bounds of the area covered by this node, without taking any of its rendering attribute into account, i.e., exclusive of any clipping, masking, filtering or stroking, for example.
 java.awt.Shape ProxyGraphicsNode.getOutline(GraphicsNodeRenderContext rc)
          Returns the outline of this node.
 void CanvasGraphicsNode.primitivePaint(java.awt.Graphics2D g2d, GraphicsNodeRenderContext rc)
           
 boolean Selectable.selectAt(double x, double y, GraphicsNodeRenderContext rc)
          Initializes the current selection to begin with the character at (x, y).
 boolean Selectable.selectTo(double x, double y, GraphicsNodeRenderContext rc)
          Extends the current selection to the character at (x, y)..
 boolean Selectable.selectAll(double x, double y, GraphicsNodeRenderContext rc)
          Selects the entire contents of the GraphicsNode at (x, y).
 java.lang.Object Selectable.getSelection(GraphicsNodeRenderContext rc)
          Get the current text selection.
 java.awt.Shape Selectable.getHighlightShape(GraphicsNodeRenderContext rc)
          Return a shape in user coords which encloses the current selection.
 java.awt.geom.Rectangle2D TextNode.getPrimitiveBounds(GraphicsNodeRenderContext rc)
          Returns the primitive bounds in user space of this text node.
 java.awt.geom.Rectangle2D TextNode.getGeometryBounds(GraphicsNodeRenderContext rc)
          Returns the geometric bounds in user space of this text node.
 boolean TextNode.contains(java.awt.geom.Point2D p, GraphicsNodeRenderContext rc)
          Returns whether a given point is enclosed by the text node's bounds.
 java.awt.Shape TextNode.getOutline(GraphicsNodeRenderContext rc)
          Returns a shape which matches the text's geometry.
 boolean TextNode.selectAt(double x, double y, GraphicsNodeRenderContext rc)
          Initializes the current selection to begin with the character at (x, y).
 boolean TextNode.selectTo(double x, double y, GraphicsNodeRenderContext rc)
          Extends the current selection to the character at (x, y)..
 boolean TextNode.selectAll(double x, double y, GraphicsNodeRenderContext rc)
          Extends the current selection to the character at (x, y)..
 java.lang.Object TextNode.getSelection(GraphicsNodeRenderContext rc)
          Gets the current text selection.
 java.awt.Shape TextNode.getHighlightShape(GraphicsNodeRenderContext rc)
           
 void TextNode.paint(java.awt.Graphics2D g2d, GraphicsNodeRenderContext rc)
          Paints this node if visible.
 void TextNode.primitivePaint(java.awt.Graphics2D g2d, GraphicsNodeRenderContext rc)
           
 void FillShapePainter.paint(java.awt.Graphics2D g2d, GraphicsNodeRenderContext ctx)
          Paints the specified shape using the specified Graphics2D and context.
 java.awt.Shape FillShapePainter.getPaintedArea(GraphicsNodeRenderContext rc)
          Returns the area painted by this painter for a given input shape
 void ShapePainter.paint(java.awt.Graphics2D g2d, GraphicsNodeRenderContext ctx)
          Paints the specified shape using the specified Graphics2D and context.
 java.awt.Shape ShapePainter.getPaintedArea(GraphicsNodeRenderContext rc)
          Returns the area painted by this painter
 void ShapeNode.paint(java.awt.Graphics2D g2d, GraphicsNodeRenderContext rc)
          Paints this node if visible.
 void ShapeNode.primitivePaint(java.awt.Graphics2D g2d, GraphicsNodeRenderContext rc)
          Paints this node without applying Filter, Mask, Composite and clip.
 boolean ShapeNode.contains(java.awt.geom.Point2D p, GraphicsNodeRenderContext rc)
          Tests if the specified Point2D is inside the boundary of this node.
 boolean ShapeNode.intersects(java.awt.geom.Rectangle2D r, GraphicsNodeRenderContext rc)
          Tests if the interior of this node intersects the interior of a specified Rectangle2D.
 java.awt.geom.Rectangle2D ShapeNode.getPrimitiveBounds(GraphicsNodeRenderContext rc)
          Returns the bounds of the area covered by this node's primitive paint.
 java.awt.geom.Rectangle2D ShapeNode.getGeometryBounds(GraphicsNodeRenderContext rc)
          Returns the bounds of the area covered by this ShapeNode, without taking any of its rendering attribute into account.
 java.awt.Shape ShapeNode.getOutline(GraphicsNodeRenderContext rc)
          Returns the outline of this ShapeNode.
 void TextPainter.paint(TextNode node, java.awt.Graphics2D g2d, GraphicsNodeRenderContext context)
          Paints the specified attributed character iterator using the specified Graphics2D and context and font context.
 Mark TextPainter.selectAt(double x, double y, java.text.AttributedCharacterIterator aci, TextNode node, GraphicsNodeRenderContext context)
          Initiates a text selection on a particular AttributedCharacterIterator, using the text/font metrics employed by this TextPainter instance.
 Mark TextPainter.selectTo(double x, double y, Mark beginMark, java.text.AttributedCharacterIterator aci, TextNode node, GraphicsNodeRenderContext context)
          Continues a text selection on a particular AttributedCharacterIterator, using the text/font metrics employed by this TextPainter instance.
 Mark TextPainter.selectAll(double x, double y, java.text.AttributedCharacterIterator aci, TextNode node, GraphicsNodeRenderContext context)
          Select all of the text represented by an AttributedCharacterIterator, using the text/font metrics employed by this TextPainter instance.
 Mark TextPainter.selectFirst(double x, double y, java.text.AttributedCharacterIterator aci, TextNode node, GraphicsNodeRenderContext context)
          Selects the first glyph in the text node.
 Mark TextPainter.selectLast(double x, double y, java.text.AttributedCharacterIterator aci, TextNode node, GraphicsNodeRenderContext context)
          Selects the last glyph in the text node.
 void CompositeShapePainter.paint(java.awt.Graphics2D g2d, GraphicsNodeRenderContext ctx)
          Paints the specified shape using the specified Graphics2D and context.
 java.awt.Shape CompositeShapePainter.getPaintedArea(GraphicsNodeRenderContext rc)
          Returns the area painted by this painter
 void MarkerShapePainter.paint(java.awt.Graphics2D g2d, GraphicsNodeRenderContext ctx)
          Paints the specified shape using the specified Graphics2D and context.
 java.awt.Shape MarkerShapePainter.getPaintedArea(GraphicsNodeRenderContext rc)
          Returns the area painted by this painter
 void StrokeShapePainter.paint(java.awt.Graphics2D g2d, GraphicsNodeRenderContext ctx)
          Paints the outline of the specified shape using the specified Graphics2D and context.
 java.awt.Shape StrokeShapePainter.getPaintedArea(GraphicsNodeRenderContext rc)
          Returns the area painted by this painter for a given input shape
 void RasterImageNode.primitivePaint(java.awt.Graphics2D g2d, GraphicsNodeRenderContext rc)
          Paints this node without applying Filter, Mask, Composite and clip.
 java.awt.geom.Rectangle2D RasterImageNode.getPrimitiveBounds(GraphicsNodeRenderContext rc)
          Returns the primitive bounds in user space of this text node.
 java.awt.geom.Rectangle2D RasterImageNode.getGeometryBounds(GraphicsNodeRenderContext rc)
          Returns the geometric bounds in user space of this text node.
 java.awt.Shape RasterImageNode.getOutline(GraphicsNodeRenderContext rc)
          Returns a shape which matches the text's geometry.
 

Constructors in org.apache.batik.gvt with parameters of type GraphicsNodeRenderContext
PatternPaint(GraphicsNode node, GraphicsNodeRenderContext gnrc, java.awt.geom.Rectangle2D patternRegion, boolean overflow, java.awt.geom.AffineTransform patternTransform)
           
 

Uses of GraphicsNodeRenderContext in org.apache.batik.gvt.event
 

Fields in org.apache.batik.gvt.event declared as GraphicsNodeRenderContext
protected  GraphicsNodeRenderContext AWTEventDispatcher.nodeRenderContext
          The GraphicsNodeRenderContext which this event dispatcher uses for context-dependent dispatches (such as TextNode hit testing).
 

Constructors in org.apache.batik.gvt.event with parameters of type GraphicsNodeRenderContext
AWTEventDispatcher(GraphicsNodeRenderContext rc)
          Constructs a new event dispatcher with the specified graphic context.
 

Uses of GraphicsNodeRenderContext in org.apache.batik.gvt.filter
 

Methods in org.apache.batik.gvt.filter that return GraphicsNodeRenderContext
protected  GraphicsNodeRenderContext GraphicsNodeRable8Bit.getGraphicsNodeRenderContext()
           
protected  GraphicsNodeRenderContext BackgroundRable8Bit.getGraphicsNodeRenderContext()
           
 

Methods in org.apache.batik.gvt.filter with parameters of type GraphicsNodeRenderContext
 GraphicsNodeRable GraphicsNodeRableFactory.createGraphicsNodeRable(GraphicsNode node, GraphicsNodeRenderContext rc)
          Returns a GraphicsNodeRable initialized with the input GraphicsNode.
 GraphicsNodeRable ConcreteGraphicsNodeRableFactory.createGraphicsNodeRable(GraphicsNode node, GraphicsNodeRenderContext rc)
          Returns a GraphicsNodeRable initialized with the input GraphicsNode.
protected  void GraphicsNodeRable8Bit.setGraphicsNodeRenderContext(GraphicsNodeRenderContext rc)
           
 Filter BackgroundRable8Bit.getBackground(GraphicsNode gn, GraphicsNode child, GraphicsNodeRenderContext rc, java.awt.geom.Rectangle2D aoi)
          Returns a filter that represents the background image for child.
protected  void BackgroundRable8Bit.setGraphicsNodeRenderContext(GraphicsNodeRenderContext rc)
           
 

Constructors in org.apache.batik.gvt.filter with parameters of type GraphicsNodeRenderContext
GraphicsNodeRed8Bit(GraphicsNode node, java.awt.geom.AffineTransform node2dev, GraphicsNodeRenderContext gnrc, boolean usePrimitivePaint, java.awt.RenderingHints hints)
           
GraphicsNodeRable8Bit(GraphicsNode node, GraphicsNodeRenderContext gnrc)
           
GraphicsNodeRable8Bit(GraphicsNode node, GraphicsNodeRenderContext gnrc, java.util.Map props)
           
BackgroundRable8Bit(GraphicsNode node, GraphicsNodeRenderContext rc)
           
 

Uses of GraphicsNodeRenderContext in org.apache.batik.gvt.font
 

Methods in org.apache.batik.gvt.font with parameters of type GraphicsNodeRenderContext
 void SVGGVTGlyphVector.draw(java.awt.Graphics2D graphics2D, GraphicsNodeRenderContext context, java.text.AttributedCharacterIterator aci)
          Draws this glyph vector.
 void Glyph.draw(java.awt.Graphics2D graphics2D, GraphicsNodeRenderContext context)
          Draws this glyph.
 void AWTGVTGlyphVector.draw(java.awt.Graphics2D graphics2D, GraphicsNodeRenderContext context, java.text.AttributedCharacterIterator aci)
          Draws this glyph vector.
 void GVTGlyphVector.draw(java.awt.Graphics2D graphics2D, GraphicsNodeRenderContext context, java.text.AttributedCharacterIterator aci)
          Draws the glyph vector.
 

Uses of GraphicsNodeRenderContext in org.apache.batik.gvt.renderer
 

Fields in org.apache.batik.gvt.renderer declared as GraphicsNodeRenderContext
protected  GraphicsNodeRenderContext StaticRenderer.nodeRenderContext
          Passed to the GVT tree to describe the rendering environment
 

Methods in org.apache.batik.gvt.renderer that return GraphicsNodeRenderContext
 GraphicsNodeRenderContext StaticRendererFactory.getRenderContext()
           
 GraphicsNodeRenderContext StaticRenderer.getRenderContext()
           
 GraphicsNodeRenderContext RendererFactory.getRenderContext()
           
 

Methods in org.apache.batik.gvt.renderer with parameters of type GraphicsNodeRenderContext
 void StaticRenderer.setRenderContext(GraphicsNodeRenderContext rc)
           
 Mark BasicTextPainter.selectAt(double x, double y, java.text.AttributedCharacterIterator aci, TextNode node, GraphicsNodeRenderContext context)
          Given an X, y coordinate, AttributedCharacterIterator, and GraphicsNodeRenderContext, return a Mark which encapsulates a "selection start" action.
 Mark BasicTextPainter.selectTo(double x, double y, Mark beginMark, java.text.AttributedCharacterIterator aci, TextNode node, GraphicsNodeRenderContext context)
          Given an X, y coordinate, starting Mark, AttributedCharacterIterator, and GraphicsNodeRenderContext, return a Mark which encapsulates a "selection continued" action.
 Mark BasicTextPainter.selectAll(double x, double y, java.text.AttributedCharacterIterator aci, TextNode node, GraphicsNodeRenderContext context)
          Select the entire contents of an AttributedCharacterIterator, and return a Mark which encapsulates that selection action.
protected abstract  Mark BasicTextPainter.hitTest(double x, double y, java.text.AttributedCharacterIterator aci, TextNode node, GraphicsNodeRenderContext context)
           
 void ConcreteTextPainter.paint(java.text.AttributedCharacterIterator aci, java.awt.geom.Point2D location, TextNode.Anchor anchor, java.awt.Graphics2D g2d, GraphicsNodeRenderContext context)
          Paints the specified attributed character iterator using the specified Graphics2D and context and font context.
 void StrokingTextPainter.paint(TextNode node, java.awt.Graphics2D g2d, GraphicsNodeRenderContext context)
          Paints the specified attributed character iterator using the specified Graphics2D and rendering context.
protected  Mark StrokingTextPainter.hitTest(double x, double y, java.text.AttributedCharacterIterator aci, TextNode node, GraphicsNodeRenderContext context)
           
 Mark StrokingTextPainter.selectFirst(double x, double y, java.text.AttributedCharacterIterator aci, TextNode node, GraphicsNodeRenderContext context)
          Selects the first glyph in the text node.
 Mark StrokingTextPainter.selectLast(double x, double y, java.text.AttributedCharacterIterator aci, TextNode node, GraphicsNodeRenderContext context)
          Selects the last glyph in the text node.
 

Constructors in org.apache.batik.gvt.renderer with parameters of type GraphicsNodeRenderContext
StaticRenderer(GraphicsNodeRenderContext rc)
           
DynamicRenderer(GraphicsNodeRenderContext rc)
          Constructs a new dynamic renderer with the specified buffer image.
 

Uses of GraphicsNodeRenderContext in org.apache.batik.gvt.text
 

Methods in org.apache.batik.gvt.text with parameters of type GraphicsNodeRenderContext
 void TextLayoutAdapter.draw(java.awt.Graphics2D g2d, GraphicsNodeRenderContext ctx)
          Paints the specified text layout using the specified Graphics2D and rendering context.
 void GlyphLayout.draw(java.awt.Graphics2D g2d, GraphicsNodeRenderContext context)
          Paints the text layout using the specified Graphics2D and rendering context.
 void TextSpanLayout.draw(java.awt.Graphics2D g2d, GraphicsNodeRenderContext ctx)
          Paints the specified text layout using the specified Graphics2D and rendering context.
 

Constructors in org.apache.batik.gvt.text with parameters of type GraphicsNodeRenderContext
ConcreteTextSelector(GraphicsNodeRenderContext rc)
           
 

Uses of GraphicsNodeRenderContext in org.apache.batik.swing.gvt
 

Methods in org.apache.batik.swing.gvt that return GraphicsNodeRenderContext
 GraphicsNodeRenderContext JGVTComponent.getRenderContext()
          Returns the GraphicsNodeRenderContext used by the renderer.
 

Constructors in org.apache.batik.swing.gvt with parameters of type GraphicsNodeRenderContext
TextSelectionManager(JGVTComponent comp, GraphicsNodeRenderContext rc, AWTEventDispatcher ed)
          Creates a new TextSelectionManager.
 

Uses of GraphicsNodeRenderContext in org.apache.batik.transcoder.print
 

Methods in org.apache.batik.transcoder.print that return GraphicsNodeRenderContext
 GraphicsNodeRenderContext PrintTranscoder.getRenderContext()
          Builds a GraphicsNodeRenderContext
 



Copyright © 2001 Apache Software Foundation. All Rights Reserved.