Contents | Package | Class | Tree | Deprecated | Index | Help | Java 1.2 Beta 3 | ||
PREV | NEXT | SHOW LISTS | HIDE LISTS |
java.lang.Object | +----java.awt.Component | +----java.awt.Container | +----java.awt.Window | +----java.awt.Frame
Field Summary | |
static int | CROSSHAIR_CURSOR
|
static int | DEFAULT_CURSOR
|
static int | E_RESIZE_CURSOR
|
static int | HAND_CURSOR
|
static int | MOVE_CURSOR
|
static int | N_RESIZE_CURSOR
|
static int | NE_RESIZE_CURSOR
|
static int | NW_RESIZE_CURSOR
|
static int | S_RESIZE_CURSOR
|
static int | SE_RESIZE_CURSOR
|
static int | SW_RESIZE_CURSOR
|
static int | TEXT_CURSOR
|
static int | W_RESIZE_CURSOR
|
static int | WAIT_CURSOR
|
Fields inherited from class java.awt.Component |
BOTTOM_ALIGNMENT, CENTER_ALIGNMENT, LEFT_ALIGNMENT, RIGHT_ALIGNMENT, TOP_ALIGNMENT |
Constructor Summary | |
Frame()
Frame that is
initially invisible.
|
|
Frame(String title)
Frame object
with the specified title.
|
Method Summary | |
void | addNotify()
|
void | dispose()
|
int | getCursorType()
|
static Frame[] | getFrames()
|
Image | getIconImage()
|
MenuBar | getMenuBar()
|
String | getTitle()
|
boolean | isResizable()
|
String | paramString()
|
void | remove(MenuComponent m)
|
void | setCursor(int cursorType)
|
void | setIconImage(Image image)
|
void | setMenuBar(MenuBar mb)
|
void | setResizable(boolean resizable)
|
void | setTitle(String title)
|
Methods inherited from class java.awt.Window |
addNotify, addWindowListener, dispose, getFocusOwner, getInputContext, getLocale, getOwnedWindows, getOwner, getToolkit, getWarningString, isShowing, pack, postEvent, processEvent, processWindowEvent, removeWindowListener, show, toBack, toFront |
Methods inherited from class java.awt.Container |
add, add, add, add, add, addContainerListener, addImpl, addNotify, countComponents, deliverEvent, doLayout, findComponentAt, findComponentAt, getAlignmentX, getAlignmentY, getComponent, getComponentAt, getComponentAt, getComponentCount, getComponents, getInsets, getLayout, getMaximumSize, getMinimumSize, getPreferredSize, insets, invalidate, isAncestorOf, layout, list, list, locate, minimumSize, paint, paintComponents, paramString, preferredSize, print, printComponents, processContainerEvent, processEvent, remove, remove, removeAll, removeContainerListener, removeNotify, setLayout, update, validate, validateTree |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
public static final int DEFAULT_CURSOR
Cursor.DEFAULT_CURSOR
.
public static final int CROSSHAIR_CURSOR
Cursor.CROSSHAIR_CURSOR
.
public static final int TEXT_CURSOR
Cursor.TEXT_CURSOR
.
public static final int WAIT_CURSOR
Cursor.WAIT_CURSOR
.
public static final int SW_RESIZE_CURSOR
Cursor.SW_RESIZE_CURSOR
.
public static final int SE_RESIZE_CURSOR
Cursor.SE_RESIZE_CURSOR
.
public static final int NW_RESIZE_CURSOR
Cursor.NW_RESIZE_CURSOR
.
public static final int NE_RESIZE_CURSOR
Cursor.NE_RESIZE_CURSOR
.
public static final int N_RESIZE_CURSOR
Cursor.N_RESIZE_CURSOR
.
public static final int S_RESIZE_CURSOR
Cursor.S_RESIZE_CURSOR
.
public static final int W_RESIZE_CURSOR
Cursor.W_RESIZE_CURSOR
.
public static final int E_RESIZE_CURSOR
Cursor.E_RESIZE_CURSOR
.
public static final int HAND_CURSOR
Cursor.HAND_CURSOR
.
public static final int MOVE_CURSOR
Cursor.MOVE_CURSOR
.
Constructor Detail |
public Frame()
Frame
that is
initially invisible.public Frame(String title)
Frame
object
with the specified title.
title
- the title for the frame
Method Detail |
public void addNotify()
public String getTitle()
null
if this frame doesn't have a title.public void setTitle(String title)
title
- the specified title of this frame.
public Image getIconImage()
null
if this frame doesn't have an icon image.public void setIconImage(Image image)
image
- the icon image to be displayed
public MenuBar getMenuBar()
null
if this frame doesn't have a menu bar.public void setMenuBar(MenuBar mb)
mb
- the menu bar being set
public boolean isResizable()
true
if the user can resize this frame;
false
otherwise.public void setResizable(boolean resizable)
resizable
- true
if this frame is resizable;
false
otherwise.
public void remove(MenuComponent m)
m
- the menu component to remove.
public void dispose()
protected String paramString()
public void setCursor(int cursorType)
Component.setCursor(Cursor)
.
public int getCursorType()
Component.getCursor()
.
public static Frame[] getFrames()
Contents | Package | Class | Tree | Deprecated | Index | Help | Java 1.2 Beta 3 | ||
PREV | NEXT | SHOW LISTS | HIDE LISTS |