|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.jfree.chart.annotations.TextAnnotation
A base class for text annotations. This class records the content but not the location of the annotation.
Field Summary | |
static java.awt.Font |
DEFAULT_FONT
The default font. |
static java.awt.Paint |
DEFAULT_PAINT
The default paint. |
static TextAnchor |
DEFAULT_ROTATION_ANCHOR
The default rotation anchor. |
static double |
DEFAULT_ROTATION_ANGLE
The default rotation angle. |
static TextAnchor |
DEFAULT_TEXT_ANCHOR
The default text anchor. |
Constructor Summary | |
protected |
TextAnnotation(java.lang.String text)
Creates a text annotation with default settings. |
Method Summary | |
boolean |
equals(java.lang.Object obj)
Tests this object for equality with an arbitrary object. |
java.awt.Font |
getFont()
Returns the font for the annotation. |
java.awt.Paint |
getPaint()
Returns the paint for the annotation. |
TextAnchor |
getRotationAnchor()
Returns the rotation anchor. |
double |
getRotationAngle()
Returns the rotation angle. |
java.lang.String |
getText()
Returns the text for the annotation. |
TextAnchor |
getTextAnchor()
Returns the text anchor. |
int |
hashCode()
Returns a hash code for this instance. |
void |
setFont(java.awt.Font font)
Sets the font for the annotation. |
void |
setPaint(java.awt.Paint paint)
Sets the paint for the annotation. |
void |
setRotationAnchor(TextAnchor anchor)
Sets the rotation anchor point. |
void |
setRotationAngle(double angle)
Sets the rotation angle. |
void |
setText(java.lang.String text)
Sets the text for the annotation. |
void |
setTextAnchor(TextAnchor anchor)
Sets the text anchor (the point on the text bounding rectangle that is aligned to the (x, y) coordinate of the annotation). |
Methods inherited from class java.lang.Object |
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
public static final java.awt.Font DEFAULT_FONT
public static final java.awt.Paint DEFAULT_PAINT
public static final TextAnchor DEFAULT_TEXT_ANCHOR
public static final TextAnchor DEFAULT_ROTATION_ANCHOR
public static final double DEFAULT_ROTATION_ANGLE
Constructor Detail |
protected TextAnnotation(java.lang.String text)
text
- the text (null
not permitted).Method Detail |
public java.lang.String getText()
null
).public void setText(java.lang.String text)
text
- the text (null
not permitted).public java.awt.Font getFont()
public void setFont(java.awt.Font font)
font
- the font.public java.awt.Paint getPaint()
public void setPaint(java.awt.Paint paint)
paint
- the paint.public TextAnchor getTextAnchor()
public void setTextAnchor(TextAnchor anchor)
anchor
- the anchor point.public TextAnchor getRotationAnchor()
public void setRotationAnchor(TextAnchor anchor)
anchor
- the anchor.public double getRotationAngle()
public void setRotationAngle(double angle)
The angle is measured clockwise in radians.
angle
- the angle (in radians).public boolean equals(java.lang.Object obj)
obj
- the object (null
permitted).
true
or false
.public int hashCode()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |