Uses of Class
ucar.unidata.ui.IndependentDialog

Packages that use IndependentDialog
Package
Description
User interface utilities: extensions of AWT and Swing classes.
  • Uses of IndependentDialog in ucar.unidata.ui

    Modifier and Type
    Class
    Description
    class 
    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);