| org.geotools.styling.AnchorPoint
All known Subclasses: org.geotools.styling.AnchorPointImpl,
AnchorPoint | public interface AnchorPoint extends GTComponent(Code) | | An AnchorPoint identifies the location inside a textlabel to use as an
"anchor" for positioning it relative to a point geometry.
author: Ian Turton version: $Id: AnchorPoint.java 25459 2007-05-08 05:19:25Z jgarnett $ |
accept | void accept(StyleVisitor visitor)(Code) | | calls the visit method of a StyleVisitor
Parameters: visitor - the style visitor |
getAnchorPointX | Expression getAnchorPointX()(Code) | | get the x coordinate of the anchor point
the expression which represents the X coordinate |
getAnchorPointY | Expression getAnchorPointY()(Code) | | get the y coordinate of the anchor point
the expression which represents the Y coordinate |
setAnchorPointX | void setAnchorPointX(Expression x)(Code) | | set the X coordinate for the anchor point
Parameters: x - an expression which represents the X coordinate |
setAnchorPointY | void setAnchorPointY(Expression y)(Code) | | set the Y coordinate for the anchor point
Parameters: y - an expression which represents the Y coordinate |
|
|