Add license clarification.
[official-gcc.git] / libjava / java / awt / Image.java
blobfb9b404336cf361c393cea09963d829a19ff579f
1 /* Image.java -- Java class for images
2 Copyright (C) 1999 Free Software Foundation, Inc.
4 This file is part of GNU Classpath.
6 GNU Classpath is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
11 GNU Classpath is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Classpath; see the file COPYING. If not, write to the
18 Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
19 02111-1307 USA.
21 Linking this library statically or dynamically with other modules is
22 making a combined work based on this library. Thus, the terms and
23 conditions of the GNU General Public License cover the whole
24 combination.
26 As a special exception, the copyright holders of this library give you
27 permission to link this library with independent modules to produce an
28 executable, regardless of the license terms of these independent
29 modules, and to copy and distribute the resulting executable under
30 terms of your choice, provided that you also meet, for each linked
31 independent module, the terms and conditions of the license of that
32 module. An independent module is a module which is not derived from
33 or based on this library. If you modify this library, you may extend
34 this exception to your version of the library, but you are not
35 obligated to do so. If you do not wish to do so, delete this
36 exception statement from your version. */
39 package java.awt;
41 import java.awt.image.*;
43 /**
44 * This is the abstract superclass of all image objects in Java.
46 * @author Aaron M. Renn (arenn@urbanophile.com)
48 public abstract class Image
52 * Static Variables
55 /**
56 * Constant indicating that the default scaling algorithm should be used.
58 public static final int SCALE_DEFAULT = 1;
60 /**
61 * Constant indicating that a fast scaling algorithm should be used.
63 public static final int SCALE_FAST = 2;
65 /**
66 * Constant indicating that a smooth scaling algorithm should be used.
68 public static final int SCALE_SMOOTH = 4;
70 /**
71 * Constant indicating that the <code>ReplicateScaleFilter</code> class
72 * algorithm should be used for scaling.
74 public static final int SCALE_REPLICATE = 8;
76 /**
77 * Constant indicating that the area averaging scaling algorithm should be
78 * used.
80 public static final int SCALE_AREA_AVERAGING = 16;
82 /**
83 * This variable is returned whenever a property that is not defined
84 * is requested.
86 public static final Object UndefinedProperty = Image.class;
88 /*************************************************************************/
91 * Constructors
94 /**
95 * A default constructor for subclasses.
97 public
98 Image()
102 /*************************************************************************/
105 * Instance Methods
109 * Returns the width of the image, or -1 if it is unknown. If the
110 * image width is unknown, the observer object will be notified when
111 * the value is known.
113 * @param observer The image observer for this object.
115 public abstract int
116 getWidth(ImageObserver observer);
118 /*************************************************************************/
121 * Returns the height of the image, or -1 if it is unknown. If the
122 * image height is unknown, the observer object will be notified when
123 * the value is known.
125 * @param observer The image observer for this object.
127 public abstract int
128 getHeight(ImageObserver observer);
130 /*************************************************************************/
133 * Returns the image producer object for this object.
135 * @return The image producer for this object.
137 public abstract ImageProducer
138 getSource();
140 /*************************************************************************/
143 * Returns a graphics context object for drawing an off-screen object.
144 * This method is only valid for off-screen objects.
146 * @return A graphics context object for an off-screen object.
148 public abstract Graphics
149 getGraphics();
151 /*************************************************************************/
154 * This method requests a named property for an object. The value of the
155 * property is returned. The value <code>UndefinedProperty</code> is
156 * returned if there is no property with the specified name. The value
157 * <code>null</code> is returned if the properties for the object are
158 * not yet known. In this case, the specified image observer is notified
159 * when the properties are known.
161 * @param name The requested property name.
162 * @param observer The image observer for this object.
164 public abstract Object
165 getProperty(String name, ImageObserver observer);
167 /*************************************************************************/
170 * Scales the image to the requested dimension.
172 * XXX: FIXME
174 * @param width The width of the scaled image.
175 * @param height The height of the scaled image.
176 * @param flags A value indicating the algorithm to use, which will be
177 * set from contants defined in this class.
179 * @return The scaled <code>Image</code> object.
181 public Image
182 getScaledInstance(int width, int height, int flags)
184 return null;
187 /*************************************************************************/
190 * Flushes (that is, destroys) any resources used for this image. This
191 * includes the actual image data.
193 public abstract void
194 flush();
196 } // class Image