home *** CD-ROM | disk | FTP | other *** search
/ Symantec Visual Cafe for Java 2.5 / symantec-visual-cafe-2.5-database-dev-edition.iso / Visual Cafe Pro v1.0 / SOURCE.BIN / TransparencyTrick.java < prev    next >
Encoding:
Java Source  |  1997-06-19  |  642 b   |  17 lines

  1. package symantec.itools.awt;
  2.  
  3. // Implementing this interface allows users of TransparencyTrickUtils to
  4. // avoid drawing lock ups due to one implementor asking another to draw itself
  5. // and that implementor, asking the asker to draw itself, resulting in a lock up
  6.  
  7. /**
  8.  * TransparencyTrick is an interface that identifies components using
  9.  * TransparencyTrickUtils. This allows TransparencyTrickUtils to 
  10.  * avoid drawing lock-ups due to one implementor asking another to draw itself
  11.  * and that implementor asking the asker to draw itself, resulting in a lock-up
  12.  * @author Symantec
  13.  */
  14. public interface TransparencyTrick
  15. {
  16. }
  17.