⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 blockcontainer.java

📁 JfreeChart 常用图表例子
💻 JAVA
字号:
/* =========================================================== * JFreeChart : a free chart library for the Java(tm) platform * =========================================================== * * (C) Copyright 2000-2005, by Object Refinery Limited and Contributors. * * Project Info:  http://www.jfree.org/jfreechart/index.html * * This library is free software; you can redistribute it and/or modify it  * under the terms of the GNU Lesser General Public License as published by  * the Free Software Foundation; either version 2.1 of the License, or  * (at your option) any later version. * * This library is distributed in the hope that it will be useful, but  * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY  * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public  * License for more details. * * You should have received a copy of the GNU Lesser General Public License  * along with this library; if not, write to the Free Software Foundation,  * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. * * [Java is a trademark or registered trademark of Sun Microsystems, Inc.  * in the United States and other countries.] *  * ------------------- * BlockContainer.java * ------------------- * (C) Copyright 2004, 2005, by Object Refinery Limited. * * Original Author:  David Gilbert (for Object Refinery Limited); * Contributor(s):   -; * * $Id: BlockContainer.java,v 1.11 2005/05/19 15:42:55 mungady Exp $ * * Changes: * -------- * 22-Oct-2004 : Version 1 (DG); * 02-Feb-2005 : Added isEmpty() method (DG); * 04-Feb-2005 : Added equals(), clone() and implemented Serializable (DG); * 08-Feb-2005 : Updated for changes in RectangleConstraint (DG); * 20-Apr-2005 : Added new draw() method (DG); *  */package org.jfree.chart.block;import java.awt.Graphics2D;import java.awt.geom.AffineTransform;import java.awt.geom.Rectangle2D;import java.io.Serializable;import java.util.ArrayList;import java.util.Collections;import java.util.Iterator;import java.util.List;import org.jfree.chart.entity.EntityCollection;import org.jfree.chart.entity.StandardEntityCollection;import org.jfree.ui.Size2D;import org.jfree.util.PublicCloneable;/** * A container for a collection of {@link Block} objects.  The container uses  * an {@link Arrangement} object to handle the position of each block. */public class BlockContainer extends AbstractBlock                             implements Block,                                        Cloneable, PublicCloneable,                                       Serializable {    /** For serialization. */    private static final long serialVersionUID = 8199508075695195293L;        /** The blocks within the container. */    private List blocks;        /** The object responsible for laying out the blocks. */    private Arrangement arrangement;        /**     * Creates a new instance with default settings.     */    public BlockContainer() {        this(new BorderArrangement());    }        /**     * Creates a new instance with the specified arrangement.     *      * @param arrangement  the arrangement manager (<code>null</code> not      *                     permitted).     */    public BlockContainer(Arrangement arrangement) {        if (arrangement == null) {            throw new IllegalArgumentException("Null 'arrangement' argument.");        }        this.arrangement = arrangement;        this.blocks = new ArrayList();    }        /**     * Returns the arrangement (layout) manager for the container.     *      * @return The arrangement manager (never <code>null</code>).     */    public Arrangement getArrangement() {        return this.arrangement;        }        /**     * Sets the arrangement (layout) manager.     *      * @param arrangement  the arrangement (<code>null</code> not permitted).     */    public void setArrangement(Arrangement arrangement) {        if (arrangement == null) {            throw new IllegalArgumentException("Null 'arrangement' argument.");        }        this.arrangement = arrangement;       }        /**     * Returns <code>true</code> if there are no blocks in the container, and     * <code>false</code> otherwise.     *      * @return A boolean.     */    public boolean isEmpty() {        return this.blocks.isEmpty();       }        /**     * Returns an unmodifiable list of the {@link Block} objects managed by      * this arrangement.     *      * @return A list of blocks.     */    public List getBlocks() {        return Collections.unmodifiableList(this.blocks);    }        /**     * Adds a block to the container.     *      * @param block  the block (<code>null</code> permitted).     */    public void add(Block block) {        add(block, null);    }        /**     * Adds a block to the container.     *      * @param block  the block (<code>null</code> permitted).     * @param key  the key (<code>null</code> permitted).     */    public void add(Block block, Object key) {        this.blocks.add(block);        this.arrangement.add(block, key);    }        /**     * Clears all the blocks from the container.     */    public void clear() {        this.blocks.clear();        this.arrangement.clear();    }        /**     * Arranges the contents of the block, within the given constraints, and      * returns the block size.     *      * @param g2  the graphics device.     * @param constraint  the constraint (<code>null</code> not permitted).     *      * @return The block size (in Java2D units, never <code>null</code>).     */    public Size2D arrange(Graphics2D g2, RectangleConstraint constraint) {        return this.arrangement.arrange(this, g2, constraint);    }    /**     * Draws the container and all the blocks within it.     *      * @param g2  the graphics device.     * @param area  the area.     */    public void draw(Graphics2D g2, Rectangle2D area) {        draw(g2, area, null);    }        /**     * Draws the block within the specified area.     *      * @param g2  the graphics device.     * @param area  the area.     * @param params  passed on to blocks within the container      *                (<code>null</code> permitted).     *      * @return An instance of {@link EntityBlockResult}, or <code>null</code>.     */    public Object draw(Graphics2D g2, Rectangle2D area, Object params) {        // check if we need to collect chart entities from the container        EntityBlockParams ebp = null;        StandardEntityCollection sec = null;        if (params instanceof EntityBlockParams) {            ebp = (EntityBlockParams) params;            if (ebp.getGenerateEntities()) {                sec = new StandardEntityCollection();               }        }        Rectangle2D contentArea = (Rectangle2D) area.clone();        contentArea = trimMargin(contentArea);        drawBorder(g2, contentArea);        contentArea = trimBorder(contentArea);        contentArea = trimPadding(contentArea);        AffineTransform saved = g2.getTransform();        g2.translate(contentArea.getX(), contentArea.getY());        Iterator iterator = this.blocks.iterator();        while (iterator.hasNext()) {            Block block = (Block) iterator.next();            Object r = block.draw(g2, block.getBounds(), params);            if (sec != null) {                if (r instanceof EntityBlockResult) {                    EntityBlockResult ebr = (EntityBlockResult) r;                    EntityCollection ec = ebr.getEntityCollection();                    sec.addAll(ec);                }            }        }        g2.setTransform(saved);        BlockResult result = null;        if (sec != null) {            result = new BlockResult();            result.setEntityCollection(sec);        }        return result;    }    /**     * Tests this container for equality with an arbitrary object.     *      * @param obj  the object (<code>null</code> permitted).     *      * @return A boolean.     */    public boolean equals(Object obj) {        if (obj == this) {            return true;           }        if (!(obj instanceof BlockContainer)) {            return false;           }        if (!super.equals(obj)) {            return false;           }        BlockContainer that = (BlockContainer) obj;        if (!this.arrangement.equals(that.arrangement)) {            return false;           }        if (!this.blocks.equals(that.blocks)) {            return false;           }        return true;    }        /**     * Returns a clone of the container.     *      * @return A clone.     *      * @throws CloneNotSupportedException if there is a problem cloning.     */    public Object clone() throws CloneNotSupportedException {        Object clone = (BlockContainer) super.clone();        // TODO : complete this        return clone;    }    }

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -