1 package com.insanityengine.ghia.m3; 2 3 /*** 4 * 5 * <P> 6 * </P> 7 * 8 * @author BrianHammond 9 * 10 * $Header: /usr/local/cvsroot/ghia/src/java/com/insanityengine/ghia/m3/Extent2dInterface.java,v 1.5 2005/03/27 00:09:45 brian Exp $ 11 * 12 */ 13 14 public interface Extent2dInterface { 15 16 /*** 17 * 18 * Determines the width of the object. 19 * 20 * @return the width of this object 21 * 22 */ 23 public int getWidth(); 24 25 /*** 26 * 27 * Determines the height of the object. 28 * 29 * @return the height of this object 30 * 31 */ 32 public int getHeight(); 33 34 /*** 35 * 36 * Set the width of the object. 37 * 38 * @param width to set to 39 * 40 */ 41 public void setWidth( int width ); 42 43 /*** 44 * 45 * Set the height of the object. 46 * 47 * @param height of this object 48 * 49 */ 50 public void setHeight( int height ); 51 52 }; 53 54 /*** 55 * 56 * $Log: Extent2dInterface.java,v $ 57 * Revision 1.5 2005/03/27 00:09:45 brian 58 * remove goofy link 59 * 60 * Revision 1.4 2005/03/19 17:50:02 brian 61 * repackaging 62 * 63 * Revision 1.3 2004/09/03 03:35:35 brian 64 * removed "final" modifier... 65 * 66 * Revision 1.2 2004/09/03 03:25:39 brian 67 * get/set... 68 * 69 * 70 */