Ignore:
Timestamp:
Apr 27, 2004, 8:39:34 PM (22 years ago)
Author:
bird
Message:

GCC v3.3.3 sources.

Location:
branches/GNU/src/gcc
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/GNU/src/gcc

    • Property svn:ignore
      •  

        old new  
        2626configure.vr
        2727configure.vrs
         28
        2829Makefile
        29 dir.info
        3030lost+found
        3131update.out
  • branches/GNU/src/gcc/libjava/java/awt/PaintContext.java

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.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
    23
    34This file is part of GNU Classpath.
     
    3839package java.awt;
    3940
     41
     42
     43
    4044/**
    4145 * @author Warren Levy <[email protected]>
    42  * @date March 16, 2000.
     46 * @see Paint
     47 * @since 1.1
     48 * @status updated to 1.4
    4349 */
    44 
    45 /**
    46  * Written using on-line Java Platform 1.2 API Specification, as well
    47  * as "The Java Class Libraries", 2nd edition (Addison-Wesley, 1998).
    48  * Status:  Partially stubbed.
    49  */
    50 
    5150public interface PaintContext
    5251{
    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
Note: See TracChangeset for help on using the changeset viewer.