Frames | No Frames |
1: /* =========================================================== 2: * JFreeChart : a free chart library for the Java(tm) platform 3: * =========================================================== 4: * 5: * (C) Copyright 2000-2007, by Object Refinery Limited and Contributors. 6: * 7: * Project Info: http://www.jfree.org/jfreechart/index.html 8: * 9: * This library is free software; you can redistribute it and/or modify it 10: * under the terms of the GNU Lesser General Public License as published by 11: * the Free Software Foundation; either version 2.1 of the License, or 12: * (at your option) any later version. 13: * 14: * This library is distributed in the hope that it will be useful, but 15: * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 16: * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public 17: * License for more details. 18: * 19: * You should have received a copy of the GNU Lesser General Public 20: * License along with this library; if not, write to the Free Software 21: * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 22: * USA. 23: * 24: * [Java is a trademark or registered trademark of Sun Microsystems, Inc. 25: * in the United States and other countries.] 26: * 27: * ----------------- 28: * AxisLocation.java 29: * ----------------- 30: * (C) Copyright 2003-2007, by Object Refinery Limited and Contributors. 31: * 32: * Original Author: David Gilbert (for Object Refinery Limited); 33: * Contributor(s): Nick Guenther; 34: * 35: * $Id: AxisLocation.java,v 1.4.2.3 2007/03/22 10:59:34 mungady Exp $ 36: * 37: * Changes: 38: * -------- 39: * 02-May-2003 : Version 1 (DG); 40: * 03-Jul-2003 : Added isTopOrBottom() and isLeftOrRight() methods (DG); 41: * 13-Aug-2003 : Fixed readResolve() bug (id=788202) (DG); 42: * 24-Mar-2004 : Added static getOpposite() method (DG); 43: * ------------- JFREECHART 1.0.x --------------------------------------------- 44: * 22-Mar-2007 : Added getOpposite() method, suggested by Nick Guenther (DG); 45: * 46: */ 47: 48: package org.jfree.chart.axis; 49: 50: import java.io.ObjectStreamException; 51: import java.io.Serializable; 52: 53: /** 54: * Used to indicate the location of an axis on a 2D plot, prior to knowing the 55: * orientation of the plot. 56: */ 57: public final class AxisLocation implements Serializable { 58: 59: /** For serialization. */ 60: private static final long serialVersionUID = -3276922179323563410L; 61: 62: /** Axis at the top or left. */ 63: public static final AxisLocation TOP_OR_LEFT = new AxisLocation( 64: "AxisLocation.TOP_OR_LEFT"); 65: 66: /** Axis at the top or right. */ 67: public static final AxisLocation TOP_OR_RIGHT = new AxisLocation( 68: "AxisLocation.TOP_OR_RIGHT"); 69: 70: /** Axis at the bottom or left. */ 71: public static final AxisLocation BOTTOM_OR_LEFT = new AxisLocation( 72: "AxisLocation.BOTTOM_OR_LEFT"); 73: 74: /** Axis at the bottom or right. */ 75: public static final AxisLocation BOTTOM_OR_RIGHT = new AxisLocation( 76: "AxisLocation.BOTTOM_OR_RIGHT"); 77: 78: /** The name. */ 79: private String name; 80: 81: /** 82: * Private constructor. 83: * 84: * @param name the name. 85: */ 86: private AxisLocation(String name) { 87: this.name = name; 88: } 89: 90: /** 91: * Returns the location that is opposite to this location. 92: * 93: * @return The opposite location. 94: * 95: * @since 1.0.5 96: */ 97: public AxisLocation getOpposite() { 98: return getOpposite(this); 99: } 100: 101: /** 102: * Returns a string representing the object. 103: * 104: * @return The string. 105: */ 106: public String toString() { 107: return this.name; 108: } 109: 110: /** 111: * Returns <code>true</code> if this object is equal to the specified 112: * object, and <code>false</code> otherwise. 113: * 114: * @param obj the other object (<code>null</code> permitted). 115: * 116: * @return A boolean. 117: */ 118: public boolean equals(Object obj) { 119: 120: if (this == obj) { 121: return true; 122: } 123: if (!(obj instanceof AxisLocation)) { 124: return false; 125: } 126: AxisLocation location = (AxisLocation) obj; 127: if (!this.name.equals(location.toString())) { 128: return false; 129: } 130: return true; 131: 132: } 133: 134: /** 135: * Returns the location that is opposite to the supplied location. 136: * 137: * @param location the location (<code>null</code> not permitted). 138: * 139: * @return The opposite location. 140: */ 141: public static AxisLocation getOpposite(AxisLocation location) { 142: if (location == null) { 143: throw new IllegalArgumentException("Null 'location' argument."); 144: } 145: AxisLocation result = null; 146: if (location == AxisLocation.TOP_OR_LEFT) { 147: result = AxisLocation.BOTTOM_OR_RIGHT; 148: } 149: else if (location == AxisLocation.TOP_OR_RIGHT) { 150: result = AxisLocation.BOTTOM_OR_LEFT; 151: } 152: else if (location == AxisLocation.BOTTOM_OR_LEFT) { 153: result = AxisLocation.TOP_OR_RIGHT; 154: } 155: else if (location == AxisLocation.BOTTOM_OR_RIGHT) { 156: result = AxisLocation.TOP_OR_LEFT; 157: } 158: else { 159: throw new IllegalStateException("AxisLocation not recognised."); 160: } 161: return result; 162: } 163: 164: /** 165: * Ensures that serialization returns the unique instances. 166: * 167: * @return The object. 168: * 169: * @throws ObjectStreamException if there is a problem. 170: */ 171: private Object readResolve() throws ObjectStreamException { 172: if (this.equals(AxisLocation.TOP_OR_RIGHT)) { 173: return AxisLocation.TOP_OR_RIGHT; 174: } 175: else if (this.equals(AxisLocation.BOTTOM_OR_RIGHT)) { 176: return AxisLocation.BOTTOM_OR_RIGHT; 177: } 178: else if (this.equals(AxisLocation.TOP_OR_LEFT)) { 179: return AxisLocation.TOP_OR_LEFT; 180: } 181: else if (this.equals(AxisLocation.BOTTOM_OR_LEFT)) { 182: return AxisLocation.BOTTOM_OR_LEFT; 183: } 184: return null; 185: } 186: 187: }