public class AWTPolylineProducer extends Object implements PointsHandler, ShapeProducer
| Modifier and Type | Field and Description |
|---|---|
protected boolean |
newPath
Is the current path a new one?
|
protected GeneralPath |
path
The current path.
|
protected int |
windingRule
The winding rule to use to construct the path.
|
| Constructor and Description |
|---|
AWTPolylineProducer() |
| Modifier and Type | Method and Description |
|---|---|
static Shape |
createShape(Reader r,
int wr)
Utility method for creating an ExtendedGeneralPath.
|
void |
endPoints()
Implements
PointsHandler.endPoints(). |
Shape |
getShape()
Returns the Shape object initialized during the last parsing.
|
int |
getWindingRule()
Returns the current winding rule.
|
void |
point(float x,
float y)
Implements
PointsHandler.point(float,float). |
void |
setWindingRule(int i)
Sets the winding rule used to construct the path.
|
void |
startPoints()
Implements
PointsHandler.startPoints(). |
protected GeneralPath path
protected boolean newPath
protected int windingRule
public static Shape createShape(Reader r, int wr) throws IOException, ParseException
r - The reader used to read the path specification.wr - The winding rule to use for creating the path.IOExceptionParseExceptionpublic void setWindingRule(int i)
setWindingRule in interface ShapeProducerpublic int getWindingRule()
getWindingRule in interface ShapeProducerpublic Shape getShape()
getShape in interface ShapeProducerpublic void startPoints()
throws ParseException
PointsHandler.startPoints().startPoints in interface PointsHandlerParseException - if an error occured while processing the
pointspublic void point(float x,
float y)
throws ParseException
PointsHandler.point(float,float).point in interface PointsHandlerx - the x coordinate of the pointy - the y coordinate of the pointParseException - if an error occured while processing the
pointspublic void endPoints()
throws ParseException
PointsHandler.endPoints().endPoints in interface PointsHandlerParseException - if an error occured while processing the
pointsCopyright © 2000–2017 Apache Software Foundation. All rights reserved.