* Sets the anchor of this text node.
* @param newAnchor the new anchor of this text node
*/
public void setAnchor(Anchor newAnchor){
invalidateGeometryCache();
Anchor oldAnchor = anchor;
this.anchor = newAnchor;
firePropertyChange("anchor", oldAnchor, anchor);
}