Package ucar.ui.widget
Interface TopLevel
-
public interface TopLevel
common toplevel for applets (JApplet) and applications (JFrames)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
close()
close and exit the progemJFrame
getJFrame()
get the underlying Frame; call only if !isApplet()RootPaneContainer
getRootPaneContainer()
get the getRootPaneContainerboolean
isApplet()
return true if this is an Appletvoid
save()
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
-
-