📄 standardentitycollection.java
字号:
/* =========================================================== * JFreeChart : a free chart library for the Java(tm) platform * =========================================================== * * (C) Copyright 2000-2004, 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.] * * ----------------------------- * StandardEntityCollection.java * ----------------------------- * (C) Copyright 2001-2004, by Object Refinery Limited. * * Original Author: David Gilbert (for Object Refinery Limited); * Contributor(s): -; * * $Id: StandardEntityCollection.java,v 1.8 2004/05/20 16:14:08 mungady Exp $ * * Changes * ------- * 23-May-2002 : Version 1 (DG); * 26-Jun-2002 : Added iterator() method (DG); * 03-Oct-2002 : Fixed errors reported by Checkstyle (DG); * 19-May-2004 : Implemented Serializable (DG); * */package org.jfree.chart.entity;import java.io.Serializable;import java.util.Collection;import java.util.Collections;import java.util.Iterator;import org.jfree.util.ObjectUtils;/** * A standard implementation of the {@link EntityCollection} interface. */public class StandardEntityCollection implements EntityCollection, Cloneable, Serializable { /** Storage for the entities. */ private Collection entities; /** * Constructs a new entity collection (initially empty). */ public StandardEntityCollection() { this.entities = new java.util.ArrayList(); } /** * Clears the entities. */ public void clear() { this.entities.clear(); } /** * Adds an entity. * * @param entity the entity. */ public void addEntity(ChartEntity entity) { this.entities.add(entity); } /** * Adds all the entities from the specified collection. * * @param collection the collection of entities. */ public void addEntities(EntityCollection collection) { this.entities.addAll(collection.getEntities()); } /** * Returns an entity for the specified coordinates. * * @param x the x coordinate. * @param y the y coordinate. * * @return the entity. */ public ChartEntity getEntity(double x, double y) { ChartEntity result = null; Iterator iterator = this.entities.iterator(); while (iterator.hasNext()) { ChartEntity entity = (ChartEntity) iterator.next(); if (entity.getArea().contains(x, y)) { result = entity; } } return result; } /** * Returns the entities in an unmodifiable collection. * * @return The entities. */ public Collection getEntities() { return Collections.unmodifiableCollection(this.entities); } /** * Returns an iterator for the entities in the collection. * * @return An iterator. */ public Iterator iterator() { return this.entities.iterator(); } /** * Tests this object for equality with an arbitrary object. * * @param obj the object to test against (<code>null</code> permitted). * * @return A boolean. */ public boolean equals(Object obj) { if (obj == this) { return true; } if (obj instanceof StandardEntityCollection) { StandardEntityCollection c = (StandardEntityCollection) obj; return ObjectUtils.equal(this.entities, c.entities); } return false; } /** * Returns a clone. * * @return A clone. * * @throws CloneNotSupportedException if the object cannot be cloned. */ public Object clone() throws CloneNotSupportedException { return super.clone(); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -