Package hermes.browser.dialog

Examples of hermes.browser.dialog.MapPropertyDialog


         properties.put("alias", "myJDBC");
         properties.put("url", "jdbc:provider://<hostname>[<:port>]/<dbname>[?<param1>=<value1>]");
         properties.put("driver", "com.mydriver.MyDriver");
      }

      final MapPropertyDialog dialog = new MapPropertyDialog(HermesBrowser.getBrowser(), "JDBC Properties",
            "\nYou need to provide an alias for this database and its URL and driver.\n", properties, true);

      dialog.addOKAction(new Runnable()
      {
         public void run()
         {
            doOnOK(properties);
         }
      });

      dialog.show();

   }
View Full Code Here


                          SwingUtilities.invokeLater(new Runnable()
                          {
                              public void run()
                              {
                                  MapPropertyDialog dialog = new MapPropertyDialog(HermesBrowser.getBrowser(),
                                          "Properties for " + dNode.getDestinationName(), null, statistics, false);
                                  dialog.pack();
                                  JideSwingUtilities.centerWindow(dialog);
                                  dialog.show();
                              }
                          });
                      }
                      catch (Throwable e)
                      {
View Full Code Here

TOP

Related Classes of hermes.browser.dialog.MapPropertyDialog

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.