Class PropertyDialog

All Implemented Interfaces:
ImageObserver, MenuContainer, Serializable, Accessible, RootPaneContainer, WindowConstants

public class PropertyDialog extends IndependentDialog
An independent dialog window for managing Properties files example of use: infoWindow = new IndependentDialog(topLevel.getRootPaneContainer(), false, "Dataset Information"); datasetInfoTA = new TextHistoryPane(500, 100, true); Container cp = infoWindow.getContentPane(); cp.add(datasetInfoTA, BorderLayout.CENTER); infoWindow.pack(); infoWindow.setSize(700,700); infoWindow.setLocation(100,100);
Version:
$Id: PropertyDialog.java,v 1.14 2007/07/06 20:45:32 jeffmc Exp $ deprecated
Author:
John Caron
See Also:
  • Constructor Details

    • PropertyDialog

      public PropertyDialog(RootPaneContainer parent, boolean modal, String title, PersistentStore store, String propertiesName)
      constructor
      Parameters:
      parent - JFrame (application) or JApplet (applet)
      modal - is modal
      title - Window title
      store - persistent stor
      propertiesName - name of property
  • Method Details

    • storePersistentData

      public void storePersistentData()
      _more_