Changeset 1391 for branches/GNU/src/gcc/libjava/java/awt/PaintContext.java
- Timestamp:
- Apr 27, 2004, 8:39:34 PM (22 years ago)
- Location:
- branches/GNU/src/gcc
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
libjava/java/awt/PaintContext.java (modified) (2 diffs, 1 prop)
Legend:
- Unmodified
- Added
- Removed
-
branches/GNU/src/gcc
- Property svn:ignore
-
old new 26 26 configure.vr 27 27 configure.vrs 28 28 29 Makefile 29 dir.info30 30 lost+found 31 31 update.out
-
- Property svn:ignore
-
branches/GNU/src/gcc/libjava/java/awt/PaintContext.java
-
Property cvs2svn:cvs-rev
changed from
1.1to1.1.1.2
r1390 r1391 1 /* Copyright (C) 2000, 2002 Free Software Foundation 1 /* PaintContext.java -- the environment for performing a paint operation 2 Copyright (C) 2000, 2002 Free Software Foundation 2 3 3 4 This file is part of GNU Classpath. … … 38 39 package java.awt; 39 40 41 42 43 40 44 /** 41 45 * @author Warren Levy <[email protected]> 42 * @date March 16, 2000. 46 * @see Paint 47 * @since 1.1 48 * @status updated to 1.4 43 49 */ 44 45 /**46 * Written using on-line Java Platform 1.2 API Specification, as well47 * as "The Java Class Libraries", 2nd edition (Addison-Wesley, 1998).48 * Status: Partially stubbed.49 */50 51 50 public interface PaintContext 52 51 { 53 public void dispose(); 54 // FIXME 55 // public ColorModel getColorModel(); 56 // public Raster getRaster(int x, int y, int w, int h); 57 } 52 /** 53 * Release the resources allocated for the paint. 54 */ 55 void dispose(); 56 57 /** 58 * Return the color model of this context. It may be different from the 59 * hint specified during createContext, as not all contexts can generate 60 * color patterns in an arbitrary model. 61 * 62 * @return the context color model 63 */ 64 ColorModel getColorModel(); 65 66 /** 67 * Return a raster containing the colors for the graphics operation. 68 * 69 * @param x the x-coordinate, in device space 70 * @param y the y-coordinate, in device space 71 * @param w the width, in device space 72 * @param h the height, in device space 73 * @return a raster for the given area and color 74 */ 75 Raster getRaster(int x, int y, int w, int h); 76 } // interface PaintContext -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.
