org.jfree.chart.block
Class ColorBlock
- Block, Cloneable, Drawable, Serializable
A block that is filled with a single color.
ColorBlock(Paint paint, double width, double height)- Creates a new block.
|
Size2D | arrange(Graphics2D g2, RectangleConstraint constraint)- Arranges the contents of the block, within the given constraints, and
returns the block size.
|
void | draw(Graphics2D g2, Rectangle2D area)- Draws the block.
|
Object | draw(Graphics2D g2, Rectangle2D area, Object params)- Draws the block within the specified area.
|
boolean | equals(Object obj)- Tests this block for equality with an arbitrary object.
|
Paint | getPaint()- Returns the paint.
|
arrange, arrange, calculateTotalHeight, calculateTotalWidth, clone, drawBorder, equals, getBorder, getBounds, getContentXOffset, getContentYOffset, getFrame, getHeight, getID, getMargin, getPadding, getWidth, setBorder, setBorder, setBounds, setFrame, setHeight, setID, setMargin, setMargin, setPadding, setPadding, setWidth, toContentConstraint, trimBorder, trimMargin, trimPadding, trimToContentHeight, trimToContentWidth |
ColorBlock
public ColorBlock(Paint paint,
double width,
double height) Creates a new block.
paint - the paint (null not permitted).width - the width.height - the height.
arrange
public Size2D arrange(Graphics2D g2,
RectangleConstraint constraint) Arranges the contents of the block, within the given constraints, and
returns the block size.
- arrange in interface Block
- arrange in interface AbstractBlock
g2 - the graphics device.constraint - the constraint (null not permitted).
- The block size (in Java2D units, never
null).
draw
public void draw(Graphics2D g2,
Rectangle2D area) Draws the block.
g2 - the graphics device.area - the area.
draw
public Object draw(Graphics2D g2,
Rectangle2D area,
Object params) Draws the block within the specified area.
- draw in interface Block
g2 - the graphics device.area - the area.params - ignored (null permitted).
equals
public boolean equals(Object obj)
Tests this block for equality with an arbitrary object.
- equals in interface AbstractBlock
obj - the object (null permitted).
getPaint
public Paint getPaint()
Returns the paint.