| javax.swing.JFrame org.jfree.ui.ApplicationFrame
All known Subclasses: org.jfree.demo.DateChooserPanelDemo, org.jfree.demo.DrawStringDemo, org.jfree.demo.TextBlockDemo,
ApplicationFrame | public class ApplicationFrame extends JFrame implements WindowListener(Code) | | A base class for creating the main frame for simple applications. The frame listens for
window closing events, and responds by shutting down the JVM. This is OK for small demo
applications...for more serious applications, you'll want to use something more robust.
author: David Gilbert |
ApplicationFrame | public ApplicationFrame(String title)(Code) | | Constructs a new application frame.
Parameters: title - the frame title. |
windowActivated | public void windowActivated(WindowEvent event)(Code) | | Required for WindowListener interface, but not used by this class.
Parameters: event - information about the window event. |
windowClosed | public void windowClosed(WindowEvent event)(Code) | | Required for WindowListener interface, but not used by this class.
Parameters: event - information about the window event. |
windowClosing | public void windowClosing(WindowEvent event)(Code) | | Listens for the main window closing, and shuts down the application.
Parameters: event - information about the window event. |
windowDeactivated | public void windowDeactivated(WindowEvent event)(Code) | | Required for WindowListener interface, but not used by this class.
Parameters: event - information about the window event. |
windowDeiconified | public void windowDeiconified(WindowEvent event)(Code) | | Required for WindowListener interface, but not used by this class.
Parameters: event - information about the window event. |
windowIconified | public void windowIconified(WindowEvent event)(Code) | | Required for WindowListener interface, but not used by this class.
Parameters: event - information about the window event. |
windowOpened | public void windowOpened(WindowEvent event)(Code) | | Required for WindowListener interface, but not used by this class.
Parameters: event - information about the window event. |
|
|