1. /*
  2. * @(#)LightweightPeer.java 1.8 00/02/02
  3. *
  4. * Copyright 1996-2000 Sun Microsystems, Inc. All Rights Reserved.
  5. *
  6. * This software is the proprietary information of Sun Microsystems, Inc.
  7. * Use is subject to license terms.
  8. *
  9. */
  10. package java.awt.peer;
  11. /**
  12. * The LightweightPeer interface marks a component as depending upon
  13. * a native container so window related events can be routed to the
  14. * component. Since this only applies to components and their
  15. * extensions, this interface extends ComponentPeer.
  16. * <p>
  17. * The peer interfaces are intended only for use in porting
  18. * the AWT. They are not intended for use by application
  19. * developers, and developers should not implement peers
  20. * nor invoke any of the peer methods directly on the peer
  21. * instances.
  22. *
  23. * @version 1.8 02/02/00
  24. * @author Timothy Prinzing
  25. */
  26. public interface LightweightPeer extends ComponentPeer {
  27. }