- /* ======================================
- * JFreeChart : a free Java chart library
- * ======================================
- *
- * (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.]
- *
- * --------------------------
- * CustomPieURLGenerator.java
- * --------------------------
- * (C) Copyright 2004-2005, by David Basten and Contributors.
- *
- * Original Author: David Basten;
- * Contributors: -;
- *
- * $Id: CustomPieURLGenerator.java,v 1.2 2005/03/09 13:45:32 mungady Exp $
- *
- * Changes:
- * --------
- * 04-Feb-2004 : Version 1, contributed by David Basten based on
- * CustomXYURLGenerator by Richard Atkinson (added to main source
- * tree on 25-May-2004);
- *
- */
- package org.jfree.chart.urls;
- import java.io.Serializable;
- import java.util.ArrayList;
- import java.util.HashMap;
- import java.util.Iterator;
- import java.util.Map;
- import java.util.Set;
- import org.jfree.data.general.PieDataset;
- import org.jfree.util.PublicCloneable;
- /**
- * A custom URL generator for pie charts.
- */
- public class CustomPieURLGenerator implements PieURLGenerator,
- Cloneable,
- PublicCloneable,
- Serializable {
- /** Storage for the URLs. */
- private ArrayList urls;
- /**
- * Default constructor.
- */
- public CustomPieURLGenerator() {
- this.urls = new ArrayList();
- }
- /**
- * Generates a URL.
- *
- * @param dataset the dataset.
- * @param key the item key.
- * @param pieIndex the pie index (ignored).
- *
- * @return A string containing the generated URL.
- */
- public String generateURL(PieDataset dataset, Comparable key,
- int pieIndex) {
- return getURL(key, pieIndex);
- }
- /**
- * Returns the number of URL lists stored by the renderer.
- *
- * @return The list count.
- */
- public int getListCount() {
- return this.urls.size();
- }
- /**
- * Returns the number of URLs in a given list.
- *
- * @param list the list index (zero based).
- *
- * @return The URL count.
- */
- public int getURLCount(int list) {
- int result = 0;
- Map urlMap = (Map) this.urls.get(list);
- if (urlMap != null) {
- result = urlMap.size();
- }
- return result;
- }
- /**
- * Returns the URL for an item.
- *
- * @param key the key.
- * @param pieItem the item index.
- *
- * @return The URL.
- */
- public String getURL(Comparable key, int pieItem) {
- String result = null;
- if (pieItem < getListCount()) {
- Map urlMap = (Map) this.urls.get(pieItem);
- if (urlMap != null) {
- result = (String) urlMap.get(key);
- }
- }
- return result;
- }
- /**
- * Adds a map of URLs.
- *
- * @param urlMap the URLs.
- */
- public void addURLs(Map urlMap) {
- this.urls.add(urlMap);
- }
- /**
- * Tests if this object is equal to another.
- *
- * @param o the other object.
- *
- * @return A boolean.
- */
- public boolean equals(Object o) {
- if (o == this) {
- return true;
- }
- if (o instanceof CustomPieURLGenerator) {
- CustomPieURLGenerator generator = (CustomPieURLGenerator) o;
- if (getListCount() != generator.getListCount()) {
- return false;
- }
- Set keySet;
- for (int pieItem = 0; pieItem < getListCount(); pieItem++) {
- if (getURLCount(pieItem) != generator.getURLCount(pieItem)) {
- return false;
- }
- keySet = ((HashMap) this.urls.get(pieItem)).keySet();
- String key;
- for (Iterator i = keySet.iterator(); i.hasNext();) {
- key = (String) i.next();
- if (!getURL(key, pieItem).equals(
- generator.getURL(key, pieItem))) {
- return false;
- }
- }
- }
- return true;
- }
- return false;
- }
- /**
- * Returns a clone of the generator.
- *
- * @return A clone.
- *
- * @throws CloneNotSupportedException if cloning is not supported.
- */
- public Object clone() throws CloneNotSupportedException {
- CustomPieURLGenerator urlGen = new CustomPieURLGenerator();
- Map map;
- Map newMap;
- String key;
- for (Iterator i = this.urls.iterator(); i.hasNext();) {
- map = (Map) i.next();
- newMap = new HashMap();
- for (Iterator j = map.keySet().iterator(); j.hasNext();) {
- key = (String) j.next();
- newMap.put(key, map.get(key));
- }
- urlGen.addURLs(newMap);
- newMap = null;
- }
- return urlGen;
- }
- }