java.lang.Object
org.jfree.chart.block.AbstractBlock
org.jfree.chart.block.BlockContainer
- All Implemented Interfaces:
Serializable
,Cloneable
,Block
,Drawable
,PublicCloneable
- Direct Known Subclasses:
LegendItemBlockContainer
public class BlockContainer
extends AbstractBlock
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.- See Also:
-
Constructor Summary
ConstructorDescriptionCreates a new instance with default settings.BlockContainer
(Arrangement arrangement) Creates a new instance with the specified arrangement. -
Method Summary
Modifier and TypeMethodDescriptionvoid
Adds a block to the container.void
Adds a block to the container.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.clone()
Returns a clone of the container.void
draw
(Graphics2D g2, Rectangle2D area) Draws the container and all the blocks within it.draw
(Graphics2D g2, Rectangle2D area, Object params) Draws the block within the specified area.boolean
Tests this container for equality with an arbitrary object.Returns the arrangement (layout) manager for the container.Returns an unmodifiable list of theBlock
objects managed by this arrangement.boolean
isEmpty()
Returnstrue
if there are no blocks in the container, andfalse
otherwise.void
setArrangement
(Arrangement arrangement) Sets the arrangement (layout) manager.Methods inherited from class org.jfree.chart.block.AbstractBlock
arrange, calculateTotalHeight, calculateTotalWidth, drawBorder, getBounds, getContentXOffset, getContentYOffset, getFrame, getHeight, getID, getMargin, getPadding, getWidth, setBorder, setBounds, setFrame, setHeight, setID, setMargin, setMargin, setPadding, setPadding, setWidth, toContentConstraint, trimBorder, trimMargin, trimPadding, trimToContentHeight, trimToContentWidth
-
Constructor Details
-
BlockContainer
public BlockContainer()Creates a new instance with default settings. -
BlockContainer
Creates a new instance with the specified arrangement.- Parameters:
arrangement
- the arrangement manager (null
not permitted).
-
-
Method Details
-
getArrangement
Returns the arrangement (layout) manager for the container.- Returns:
- The arrangement manager (never
null
).
-
setArrangement
Sets the arrangement (layout) manager.- Parameters:
arrangement
- the arrangement (null
not permitted).
-
isEmpty
public boolean isEmpty()Returnstrue
if there are no blocks in the container, andfalse
otherwise.- Returns:
- A boolean.
-
getBlocks
Returns an unmodifiable list of theBlock
objects managed by this arrangement.- Returns:
- A list of blocks.
-
add
Adds a block to the container.- Parameters:
block
- the block (null
permitted).
-
add
Adds a block to the container.- Parameters:
block
- the block (null
permitted).key
- the key (null
permitted).
-
clear
public void clear()Clears all the blocks from the container. -
arrange
Arranges the contents of the block, within the given constraints, and returns the block size.- Specified by:
arrange
in interfaceBlock
- Overrides:
arrange
in classAbstractBlock
- Parameters:
g2
- the graphics device.constraint
- the constraint (null
not permitted).- Returns:
- The block size (in Java2D units, never
null
).
-
draw
Draws the container and all the blocks within it. -
draw
Draws the block within the specified area.- Specified by:
draw
in interfaceBlock
- Parameters:
g2
- the graphics device.area
- the area.params
- passed on to blocks within the container (null
permitted).- Returns:
- An instance of
EntityBlockResult
, ornull
.
-
equals
Tests this container for equality with an arbitrary object.- Overrides:
equals
in classAbstractBlock
- Parameters:
obj
- the object (null
permitted).- Returns:
- A boolean.
-
clone
Returns a clone of the container.- Specified by:
clone
in interfacePublicCloneable
- Overrides:
clone
in classAbstractBlock
- Returns:
- A clone.
- Throws:
CloneNotSupportedException
- if there is a problem cloning.
-