1 /* 2 SwingWT 3 Copyright(c)2003-2004, R. Rawson-Tetley 4 5 For more information on distributing and using this program, please 6 see the accompanying "COPYING" file. 7 8 Contact me by electronic mail: bobintetley@users.sourceforge.net 9 10 $Log: Transparency.java,v $ 11 Revision 1.3 2004/04/29 12:49:26 bobintetley 12 Additional JOptionePane constants, missing JTree methods and improved awt.Image support 13 14 Revision 1.2 2004/01/06 08:28:02 bobintetley 15 Header fixes 16 17 18 */ 19 package swingwt.awt; 20 21 public interface Transparency { 22 public final static int OPAQUE = 1; 23 public final static int BITMASK = 2; 24 public final static int TRANSLUCENT = 3; 25 public int getTransparency(); 26 }