/[classpath]/classpath/java/awt/Transparency.java
ViewVC logotype

Diff of /classpath/java/awt/Transparency.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.4 by mkoch, Mon Dec 23 12:45:46 2002 UTC revision 1.5 by tromey, Wed Jan 1 23:42:42 2003 UTC
# Line 47  package java.awt; Line 47  package java.awt;
47  public interface Transparency  public interface Transparency
48  {  {
49    /** Image data which is completely opaque, for an alpha value of 1.0. */    /** Image data which is completely opaque, for an alpha value of 1.0. */
50    static final int OPAQUE = 1;    int OPAQUE = 1;
51    
52    /**    /**
53     * Image data which is either completely opaque or transparent, for an     * Image data which is either completely opaque or transparent, for an
54     * exact integer alpha value.     * exact integer alpha value.
55     */     */
56    static final int BITMASK = 2;    int BITMASK = 2;
57    
58    /** Image data which is translucent, for a non-integer alpha value. */    /** Image data which is translucent, for a non-integer alpha value. */
59    static final int TRANSLUCENT = 3;    int TRANSLUCENT = 3;
60    
61    /**    /**
62     * Return the transparency type.     * Return the transparency type.

Legend:
Removed from v.1.4  
changed lines
  Added in v.1.5

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26