org.jfree.chart.block
Class BlockContainer
- Block, Cloneable, Drawable, PublicCloneable, Serializable
implements Block, Cloneable, PublicCloneable, Serializable
A container for a collection of
Block objects. The container uses
an
Arrangement object to handle the position of each block.
void | add(Block block)- Adds a block to the container.
|
void | add(Block block, Object key)- Adds a block to the container.
|
Size2D | arrange(Graphics2D g2, RectangleConstraint constraint)- Arranges the contents of the block, within the given constraints, and
returns the block size.
|
void | clear()- Clears all the blocks from the container.
|
Object | clone()- Returns a clone of the container.
|
void | draw(Graphics2D g2, Rectangle2D area)- Draws the container and all the blocks within it.
|
Object | draw(Graphics2D g2, Rectangle2D area, Object params)- Draws the block within the specified area.
|
boolean | equals(Object obj)- Tests this container for equality with an arbitrary object.
|
Arrangement | getArrangement()- Returns the arrangement (layout) manager for the container.
|
List | getBlocks()- Returns an unmodifiable list of the
Block objects managed by
this arrangement.
|
boolean | isEmpty()- Returns
true if there are no blocks in the container, and
false otherwise.
|
void | setArrangement(Arrangement arrangement)- Sets the arrangement (layout) manager.
|
arrange, arrange, calculateTotalHeight, calculateTotalWidth, drawBorder, equals, getBorder, getBounds, getContentXOffset, getContentYOffset, getHeight, getID, getMargin, getPadding, getWidth, setBorder, setBorder, setBounds, setHeight, setID, setMargin, setMargin, setPadding, setPadding, setWidth, toContentConstraint, trimBorder, trimMargin, trimPadding, trimToContentHeight, trimToContentWidth |
BlockContainer
public BlockContainer()
Creates a new instance with default settings.
BlockContainer
public BlockContainer(Arrangement arrangement)
Creates a new instance with the specified arrangement.
arrangement - the arrangement manager (null not
permitted).
add
public void add(Block block)
Adds a block to the container.
block - the block (null permitted).
add
public void add(Block block,
Object key) Adds a block to the container.
block - the block (null permitted).key - the key (null permitted).
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).
clear
public void clear()
Clears all the blocks from the container.
clone
public Object clone()
throws CloneNotSupportedException Returns a clone of the container.
draw
public void draw(Graphics2D g2,
Rectangle2D area) Draws the container and all the blocks within it.
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 - passed on to blocks within the container
(null permitted).
equals
public boolean equals(Object obj)
Tests this container for equality with an arbitrary object.
- equals in interface AbstractBlock
obj - the object (null permitted).
getArrangement
public Arrangement getArrangement()
Returns the arrangement (layout) manager for the container.
- The arrangement manager (never
null).
getBlocks
public List getBlocks()
Returns an unmodifiable list of the
Block objects managed by
this arrangement.
isEmpty
public boolean isEmpty()
Returns true if there are no blocks in the container, and
false otherwise.
setArrangement
public void setArrangement(Arrangement arrangement)
Sets the arrangement (layout) manager.
arrangement - the arrangement (null not permitted).