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