Package com.google.gdt.eclipse.designer.util.ui

Examples of com.google.gdt.eclipse.designer.util.ui.HtmlSelectionDialog


     * Choose a module HTML using dialog.
     */
    private void chooseModuleHtml() {
      try {
        ensureCreateClassLoader();
        HtmlSelectionDialog dialog =
            new HtmlSelectionDialog(getShell(),
                m_resourcesProvider,
                getModule(),
                "Select module HTML file");
        if (dialog.open() == IDialogConstants.OK_ID) {
          m_moduleHtmlField.setText(dialog.getSelectedResourcePath());
        }
      } catch (Throwable e) {
        DesignerPlugin.log(e);
      }
    }
View Full Code Here

TOP

Related Classes of com.google.gdt.eclipse.designer.util.ui.HtmlSelectionDialog

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.