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