Package org.apache.fop.render
Class RendererContext.RendererContextWrapper
- java.lang.Object
-
- org.apache.fop.render.RendererContext.RendererContextWrapper
-
- Direct Known Subclasses:
PCLRendererContext
- Enclosing class:
- RendererContext
public static class RendererContext.RendererContextWrapper extends java.lang.Object
Base class for a wrapper around RendererContext to access its properties in a type-safe, renderer-specific way.
-
-
Field Summary
Fields Modifier and Type Field Description protected RendererContext
context
The wrapped RendererContext
-
Constructor Summary
Constructors Constructor Description RendererContextWrapper(RendererContext context)
Main constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getCurrentXPosition()
int
getCurrentYPosition()
java.util.Map
getForeignAttributes()
int
getHeight()
FOUserAgent
getUserAgent()
int
getWidth()
java.lang.String
toString()
-
-
-
Field Detail
-
context
protected RendererContext context
The wrapped RendererContext
-
-
Constructor Detail
-
RendererContextWrapper
public RendererContextWrapper(RendererContext context)
Main constructor- Parameters:
context
- the RendererContent instance
-
-
Method Detail
-
getUserAgent
public FOUserAgent getUserAgent()
- Returns:
- the user agent
-
getCurrentXPosition
public int getCurrentXPosition()
- Returns:
- the currentXPosition
-
getCurrentYPosition
public int getCurrentYPosition()
- Returns:
- the currentYPosition
-
getWidth
public int getWidth()
- Returns:
- the width of the image
-
getHeight
public int getHeight()
- Returns:
- the height of the image
-
getForeignAttributes
public java.util.Map getForeignAttributes()
- Returns:
- the foreign attributes
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-