KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > java > awt > peer > FramePeer


1 /*
2  * @(#)FramePeer.java 1.28 04/06/08
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 import java.awt.*;
11
12 /**
13  * The peer interfaces are intended only for use in porting
14  * the AWT. They are not intended for use by application
15  * developers, and developers should not implement peers
16  * nor invoke any of the peer methods directly on the peer
17  * instances.
18  */

19 public interface FramePeer extends WindowPeer {
20     void setTitle(String JavaDoc title);
21     void setIconImage(Image im);
22     void setMenuBar(MenuBar mb);
23     void setResizable(boolean resizeable);
24     void setState(int state);
25     int getState();
26     void setMaximizedBounds(Rectangle bounds); // XXX
27
void setBoundsPrivate(int x, int y, int width, int height);
28 }
29
Popular Tags