home *** CD-ROM | disk | FTP | other *** search
Java Source | 1998-03-18 | 952 b | 26 lines |
- package symantec.itools.awt;
-
- // 07/13/97 LAB Deprecated because it's not needed in JDK 1.1.
- // Added version tag.
-
- // Implementing this interface allows users of TransparencyTrickUtils to
- // avoid drawing lock ups due to one implementor asking another to draw itself
- // and that implementor, asking the asker to draw itself, resulting in a lock up
-
- /**
- * @deprecated
- * This is no longer used or supported as of JDK 1.1 since the new JDK allows
- * "Lightweight" components which are "Transparent" in nature by default.
- *
- * TransparencyTrick is an interface that simply identifies components using
- * TransparencyTrickUtils. This allows TransparencyTrickUtils to
- * avoid drawing lock-ups due to one implementor asking another to draw itself
- * and that implementor asking the asker to draw itself, resulting in a lock-up
- *
- * @version 1.1, July 14, 1997
- * @author Symantec
- */
- public interface TransparencyTrick
- {
- }
-