Package com.google.gdt.eclipse.designer.model.property.css

Examples of com.google.gdt.eclipse.designer.model.property.css.StylesEditDialog.open()


    @Override
    protected void run(IDesignPage designPage) {
      List<IFile> cssFiles = m_model.getState().getCssSupport().getFiles();
      StylesEditDialog stylesDialog = new StylesEditDialog(DesignerPlugin.getShell(), cssFiles, "");
      // open dialog
      int result = stylesDialog.open();
      if (result == Window.CANCEL) {
        return;
      }
      // wait for auto-build - for coping CSS files from source folder to binary
      ProjectUtils.waitForAutoBuild();
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.