|
|||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||
java.lang.Objectjava.awt.Component
java.awt.Container
javax.swing.JComponent
javax.swing.JInternalFrame
org.globus.cog.gridface.impl.desktop.frames.DesktopInternalFrameImpl
| Nested Class Summary |
| Nested classes inherited from class javax.swing.JInternalFrame |
JInternalFrame.AccessibleJInternalFrame, JInternalFrame.JDesktopIcon |
| Nested classes inherited from class javax.swing.JComponent |
JComponent.AccessibleJComponent |
| Nested classes inherited from class java.awt.Container |
Container.AccessibleAWTContainer |
| Nested classes inherited from class java.awt.Component |
Component.AccessibleAWTComponent, Component.BltBufferStrategy, Component.FlipBufferStrategy |
| Field Summary | |
boolean |
saveChanges
|
| Fields inherited from class javax.swing.JInternalFrame |
closable, CONTENT_PANE_PROPERTY, desktopIcon, FRAME_ICON_PROPERTY, frameIcon, GLASS_PANE_PROPERTY, iconable, IS_CLOSED_PROPERTY, IS_ICON_PROPERTY, IS_MAXIMUM_PROPERTY, IS_SELECTED_PROPERTY, isClosed, isIcon, isMaximum, isSelected, LAYERED_PANE_PROPERTY, maximizable, MENU_BAR_PROPERTY, resizable, ROOT_PANE_PROPERTY, rootPane, rootPaneCheckingEnabled, title, TITLE_PROPERTY |
| Fields inherited from class javax.swing.JComponent |
accessibleContext, listenerList, TOOL_TIP_TEXT_KEY, ui, UNDEFINED_CONDITION, WHEN_ANCESTOR_OF_FOCUSED_COMPONENT, WHEN_FOCUSED, WHEN_IN_FOCUSED_WINDOW |
| Fields inherited from class java.awt.Component |
BOTTOM_ALIGNMENT, CENTER_ALIGNMENT, LEFT_ALIGNMENT, RIGHT_ALIGNMENT, TOP_ALIGNMENT |
| Fields inherited from interface org.globus.cog.gridface.impl.desktop.interfaces.DesktopInternalFrame |
FRAME_HEIGHT, FRAME_WIDTH, LOGFRAME_HEIGHT, LOGFRAME_WIDTH, sCASCADE_ALL, sMAXIMIZE_ALL, sMINIMIZE_ALL, XOFFSET, YOFFSET |
| Fields inherited from interface javax.swing.WindowConstants |
DISPOSE_ON_CLOSE, DO_NOTHING_ON_CLOSE, EXIT_ON_CLOSE, HIDE_ON_CLOSE |
| Fields inherited from interface java.awt.image.ImageObserver |
ABORT, ALLBITS, ERROR, FRAMEBITS, HEIGHT, PROPERTIES, SOMEBITS, WIDTH |
| Constructor Summary | |
DesktopInternalFrameImpl()
Creates a non-resizable, non-closable, non-maximizable, non-iconifiable DesktopInternalFrame with no title. |
|
DesktopInternalFrameImpl(Component childComponent,
String title,
boolean resizable,
boolean closable,
boolean maximizable,
boolean iconifiable,
boolean saveChanges)
|
|
DesktopInternalFrameImpl(Component childComponent,
String title,
int width,
int height,
boolean resizable,
boolean closable,
boolean maximizable,
boolean iconifiable,
boolean saveChanges)
|
|
DesktopInternalFrameImpl(String title)
Creates a non-resizable, non-closable, non-maximizable, non-iconifiable DesktopInternalFrame with the specified title. |
|
DesktopInternalFrameImpl(String title,
boolean resizable)
Creates a non-closable, non-maximizable, non-iconifiable DesktopInternalFrame with the specified title
and resizability. |
|
DesktopInternalFrameImpl(String title,
boolean resizable,
boolean closable)
Creates a non-maximizable, non-iconifiable DesktopInternalFrame
with the specified title, resizability, and
closability. |
|
DesktopInternalFrameImpl(String title,
boolean resizable,
boolean closable,
boolean maximizable)
Creates a non-iconifiable DesktopInternalFrame
with the specified title,
resizability, closability, and maximizability. |
|
DesktopInternalFrameImpl(String appClassName,
ObjectPair arguments,
String title,
boolean resizable,
boolean closable,
boolean maximizable,
boolean iconifiable,
boolean saveChanges)
Creates a DesktopInternalFrame with the specified
Application container, Hashtable of Objects and their defining
classes accepted by the container constructors, title,
resizability, closability, maximizability, and iconifiability. |
|
| Method Summary | |
boolean |
isSaveChanges()
|
void |
setIconImage(Image image)
|
void |
setSaveChanges(boolean saveChange)
|
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Field Detail |
public boolean saveChanges
| Constructor Detail |
public DesktopInternalFrameImpl()
throws Exception
DesktopInternalFrame with no title.
public DesktopInternalFrameImpl(String title)
throws Exception
DesktopInternalFrame with the specified title.
Note that passing in a null title results in
unspecified behavior and possibly an exception.
title - the non-null String
to display in the title bar
public DesktopInternalFrameImpl(String title,
boolean resizable)
throws Exception
DesktopInternalFrame with the specified title
and resizability.
title - the String to display in the title barresizable - if true, the internal frame can be resized
public DesktopInternalFrameImpl(String title,
boolean resizable,
boolean closable)
throws Exception
DesktopInternalFrame
with the specified title, resizability, and
closability.
title - the String to display in the title barresizable - if true, the internal frame can be resizedclosable - if true, the internal frame can be closed
public DesktopInternalFrameImpl(String title,
boolean resizable,
boolean closable,
boolean maximizable)
throws Exception
DesktopInternalFrame
with the specified title,
resizability, closability, and maximizability.
title - the String to display in the title barresizable - if true, the internal frame can be resizedclosable - if true, the internal frame can be closedmaximizable - if true, the internal frame can be maximized
public DesktopInternalFrameImpl(String appClassName,
ObjectPair arguments,
String title,
boolean resizable,
boolean closable,
boolean maximizable,
boolean iconifiable,
boolean saveChanges)
throws Exception
DesktopInternalFrame with the specified
Application container, Hashtable of Objects and their defining
classes accepted by the container constructors, title,
resizability, closability, maximizability, and iconifiability.
All DesktopInternalFrame constructors use this one.
title - the String to display in the title barresizable - if true, the internal frame can be resizedclosable - if true, the internal frame can be closedmaximizable - if true, the internal frame can be maximizediconifiable - if true, the internal frame can be iconified
public DesktopInternalFrameImpl(Component childComponent,
String title,
int width,
int height,
boolean resizable,
boolean closable,
boolean maximizable,
boolean iconifiable,
boolean saveChanges)
public DesktopInternalFrameImpl(Component childComponent,
String title,
boolean resizable,
boolean closable,
boolean maximizable,
boolean iconifiable,
boolean saveChanges)
| Method Detail |
public boolean isSaveChanges()
isSaveChanges in interface AccessSaveChangespublic void setSaveChanges(boolean saveChange)
setSaveChanges in interface AccessSaveChangespublic void setIconImage(Image image)
|
|||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||