Package ucar.ui.widget
Interface TopLevel
-
public interface TopLevelcommon toplevel for applets (JApplet) and applications (JFrames)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidclose()close and exit the progemJFramegetJFrame()get the underlying Frame; call only if !isApplet()RootPaneContainergetRootPaneContainer()get the getRootPaneContainerbooleanisApplet()return true if this is an Appletvoidsave()save any persistant data
-
-
-
Method Detail
-
getRootPaneContainer
RootPaneContainer getRootPaneContainer()
get the getRootPaneContainer
-
getJFrame
JFrame getJFrame()
get the underlying Frame; call only if !isApplet()
-
close
void close()
close and exit the progem
-
save
void save()
save any persistant data
-
isApplet
boolean isApplet()
return true if this is an Applet
-
-