org.jfree.text
public class TextBox extends Object implements Serializable
| Constructor Summary | |
|---|---|
| TextBox()
Creates an empty text box. | |
| TextBox(String text)
Creates a text box.
| |
| TextBox(TextBlock block)
Creates a new text box.
| |
| Method Summary | |
|---|---|
| void | draw(Graphics2D g2, float x, float y, RectangleAnchor anchor)
Draws the text box.
|
| boolean | equals(Object obj)
Tests this object for equality with an arbitrary object.
|
| Paint | getBackgroundPaint()
Returns the background paint.
|
| double | getHeight(Graphics2D g2)
Returns the height of the text box.
|
| RectangleInsets | getInteriorGap()
Returns the interior gap.
|
| Paint | getOutlinePaint()
Returns the outline paint.
|
| Stroke | getOutlineStroke()
Returns the outline stroke.
|
| Paint | getShadowPaint()
Returns the shadow paint.
|
| double | getShadowXOffset()
Returns the x-offset for the shadow effect.
|
| double | getShadowYOffset()
Returns the y-offset for the shadow effect.
|
| TextBlock | getTextBlock()
Returns the text block.
|
| int | hashCode()
Returns a hash code for this object.
|
| void | setBackgroundPaint(Paint paint)
Sets the background paint.
|
| void | setInteriorGap(RectangleInsets gap)
Sets the interior gap.
|
| void | setOutlinePaint(Paint paint)
Sets the outline paint.
|
| void | setOutlineStroke(Stroke stroke)
Sets the outline stroke.
|
| void | setShadowPaint(Paint paint)
Sets the shadow paint.
|
| void | setShadowXOffset(double offset)
Sets the x-offset for the shadow effect.
|
| void | setShadowYOffset(double offset)
Sets the y-offset for the shadow effect.
|
| void | setTextBlock(TextBlock block)
Sets the text block.
|
Parameters: text the text.
Parameters: block the text block.
Parameters: g2 the graphics device. x the x-coordinate. y the y-coordinate. anchor the anchor point.
Parameters: obj the object to test against (null permitted).
Returns: A boolean.
Returns: The background paint.
Parameters: g2 the graphics device.
Returns: The height (in Java2D units).
Returns: The interior gap.
Returns: The outline paint.
Returns: The outline stroke.
Returns: The shadow paint.
Returns: The offset.
Returns: The offset.
Returns: The text block.
Returns: A hash code.
Parameters: paint the paint.
Parameters: gap the gap.
Parameters: paint the paint.
Parameters: stroke the stroke.
Parameters: paint the paint.
Parameters: offset the offset (in Java2D units).
Parameters: offset the offset (in Java2D units).
Parameters: block the block.