?? tickunits.java
字號:
/* ======================================
* JFreeChart : a free Java chart library
* ======================================
*
* Project Info: http://www.jfree.org/jfreechart/index.html
* Project Lead: David Gilbert (david.gilbert@object-refinery.com);
*
* (C) Copyright 2000-2003, by Object Refinery Limited and Contributors.
*
* 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.
*
* --------------
* TickUnits.java
* --------------
* (C) Copyright 2001-2003, by Object Refinery Limited.
*
* Original Author: David Gilbert (for Object Refinery Limited);
* Contributor(s): -;
*
* $Id: TickUnits.java,v 1.5 2003/09/03 15:08:48 mungady Exp $
*
* Changes
* -------
* 23-Nov-2001 : Version 1 (DG);
* 18-Feb-2002 : Fixed bug in getNearestTickUnit (thanks to Mario Inchiosa for reporting this,
* SourceForge bug id 518073) (DG);
* 25-Feb-2002 : Moved createStandardTickUnits() method from NumberAxis, and added
* createIntegerTickUnits() method (DG);
* 01-May-2002 : Updated for changes to the TickUnit class (DG);
* 18-Sep-2002 : Added standardTickUnit methods which take a Locale instance (AS);
* 26-Sep-2002 : Fixed errors reported by Checkstyle (DG);
* 08-Nov-2002 : Moved to new package com.jrefinery.chart.axis (DG);
* 26-Mar-2003 : Implemented Serializable (DG);
* 13-Aug-2003 : Implemented Cloneable (DG);
*
*/
package org.jfree.chart.axis;
import java.io.Serializable;
import java.text.DecimalFormat;
import java.text.NumberFormat;
import java.util.Collections;
import java.util.List;
import java.util.Locale;
/**
* A collection of tick units.
* <P>
* Used by the {@link DateAxis} and {@link NumberAxis} classes.
*
* @author David Gilbert
*/
public class TickUnits implements Cloneable, Serializable {
/** Storage for the tick units. */
private List tickUnits;
/**
* Constructs a new collection of tick units.
*/
public TickUnits() {
this.tickUnits = new java.util.ArrayList();
}
/**
* Adds a tick unit to the collection.
* <P>
* The tick units are maintained in ascending order.
*
* @param unit the tick unit to add.
*/
public void add(TickUnit unit) {
this.tickUnits.add(unit);
Collections.sort(this.tickUnits);
}
/**
* Returns a tick unit that is larger than the supplied unit.
*
* @param unit the unit.
*
* @return a tick unit that is larger than the supplied unit.
*/
public TickUnit getLargerTickUnit(TickUnit unit) {
int index = Collections.binarySearch(this.tickUnits, unit);
if (index >= 0) {
index = index + 1;
}
else {
index = -index;
}
return (TickUnit) this.tickUnits.get(Math.min(index, this.tickUnits.size() - 1));
}
/**
* Returns the tick unit in the collection that is greater than or equal
* to (in size) the specified unit.
*
* @param unit the unit.
*
* @return a unit from the collection.
*/
public TickUnit getCeilingTickUnit(TickUnit unit) {
int index = Collections.binarySearch(this.tickUnits, unit);
if (index >= 0) {
return (TickUnit) this.tickUnits.get(index);
}
else {
index = -(index + 1);
return (TickUnit) this.tickUnits.get(Math.min(index, this.tickUnits.size() - 1));
}
}
/**
* Returns the tick unit in the collection that is greater than or equal
* to the specified size.
*
* @param size the size.
*
* @return a unit from the collection.
*/
public TickUnit getCeilingTickUnit(double size) {
return getCeilingTickUnit(new NumberTickUnit(size, null));
}
/**
* Creates the standard tick units.
* <P>
* If you don't like these defaults, create your own instance of TickUnits
* and then pass it to the setStandardTickUnits(...) method in the
* NumberAxis class.
*
* @return the standard tick units.
*
* @deprecated this method has been moved to the NumberAxis class.
*/
public static TickUnits createStandardTickUnits() {
TickUnits units = new TickUnits();
// we can add the units in any order, the TickUnits collection will sort them...
units.add(new NumberTickUnit(0.0000001, new DecimalFormat("0.0000000")));
units.add(new NumberTickUnit(0.000001, new DecimalFormat("0.000000")));
units.add(new NumberTickUnit(0.00001, new DecimalFormat("0.00000")));
units.add(new NumberTickUnit(0.0001, new DecimalFormat("0.0000")));
units.add(new NumberTickUnit(0.001, new DecimalFormat("0.000")));
units.add(new NumberTickUnit(0.01, new DecimalFormat("0.00")));
units.add(new NumberTickUnit(0.1, new DecimalFormat("0.0")));
units.add(new NumberTickUnit(1, new DecimalFormat("0")));
units.add(new NumberTickUnit(10, new DecimalFormat("0")));
units.add(new NumberTickUnit(100, new DecimalFormat("0")));
units.add(new NumberTickUnit(1000, new DecimalFormat("#,##0")));
units.add(new NumberTickUnit(10000, new DecimalFormat("#,##0")));
units.add(new NumberTickUnit(100000, new DecimalFormat("#,##0")));
units.add(new NumberTickUnit(1000000, new DecimalFormat("#,###,##0")));
units.add(new NumberTickUnit(10000000, new DecimalFormat("#,###,##0")));
units.add(new NumberTickUnit(100000000, new DecimalFormat("#,###,##0")));
units.add(new NumberTickUnit(1000000000, new DecimalFormat("#,###,###,##0")));
units.add(new NumberTickUnit(0.00000025, new DecimalFormat("0.00000000")));
units.add(new NumberTickUnit(0.0000025, new DecimalFormat("0.0000000")));
units.add(new NumberTickUnit(0.000025, new DecimalFormat("0.000000")));
units.add(new NumberTickUnit(0.00025, new DecimalFormat("0.00000")));
units.add(new NumberTickUnit(0.0025, new DecimalFormat("0.0000")));
units.add(new NumberTickUnit(0.025, new DecimalFormat("0.000")));
units.add(new NumberTickUnit(0.25, new DecimalFormat("0.00")));
units.add(new NumberTickUnit(2.5, new DecimalFormat("0.0")));
units.add(new NumberTickUnit(25, new DecimalFormat("0")));
units.add(new NumberTickUnit(250, new DecimalFormat("0")));
units.add(new NumberTickUnit(2500, new DecimalFormat("#,##0")));
units.add(new NumberTickUnit(25000, new DecimalFormat("#,##0")));
units.add(new NumberTickUnit(250000, new DecimalFormat("#,##0")));
units.add(new NumberTickUnit(2500000, new DecimalFormat("#,###,##0")));
units.add(new NumberTickUnit(25000000, new DecimalFormat("#,###,##0")));
units.add(new NumberTickUnit(250000000, new DecimalFormat("#,###,##0")));
units.add(new NumberTickUnit(2500000000.0, new DecimalFormat("#,###,###,##0")));
units.add(new NumberTickUnit(0.0000005, new DecimalFormat("0.0000000")));
units.add(new NumberTickUnit(0.000005, new DecimalFormat("0.000000")));
units.add(new NumberTickUnit(0.00005, new DecimalFormat("0.00000")));
units.add(new NumberTickUnit(0.0005, new DecimalFormat("0.0000")));
units.add(new NumberTickUnit(0.005, new DecimalFormat("0.000")));
units.add(new NumberTickUnit(0.05, new DecimalFormat("0.00")));
units.add(new NumberTickUnit(0.5, new DecimalFormat("0.0")));
units.add(new NumberTickUnit(5L, new DecimalFormat("0")));
units.add(new NumberTickUnit(50L, new DecimalFormat("0")));
units.add(new NumberTickUnit(500L, new DecimalFormat("0")));
units.add(new NumberTickUnit(5000L, new DecimalFormat("#,##0")));
units.add(new NumberTickUnit(50000L, new DecimalFormat("#,##0")));
units.add(new NumberTickUnit(500000L, new DecimalFormat("#,##0")));
units.add(new NumberTickUnit(5000000L, new DecimalFormat("#,###,##0")));
units.add(new NumberTickUnit(50000000L, new DecimalFormat("#,###,##0")));
units.add(new NumberTickUnit(500000000L, new DecimalFormat("#,###,##0")));
units.add(new NumberTickUnit(5000000000L, new DecimalFormat("#,###,###,##0")));
return units;
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -