Package org.eclipse.wb.core.controls

Examples of org.eclipse.wb.core.controls.BrowserComposite


        m_currencyButton.addListener(SWT.Selection, listener);
        updateEnabledFormat();
      }
      // JavaDoc
      {
        final BrowserComposite browserComposite = new BrowserComposite(dialogArea, SWT.BORDER);
        GridDataFactory.create(browserComposite).spanH(2).hintC(60, 10).grab().fill();
        ExecutionUtils.runIgnore(new RunnableEx() {
          public void run() throws Exception {
            IJavaProject javaProject = m_object.getContext().getJavaProject();
            IType type = javaProject.findType("com.google.gwt.i18n.client.NumberFormat");
            List<String> lines = JavaDocUtils.getJavaDocLines(type, false);
            String text = Joiner.on(" ").join(lines);
            browserComposite.setText(text);
          }
        });
      }
      return dialogArea;
    }
View Full Code Here

TOP

Related Classes of org.eclipse.wb.core.controls.BrowserComposite

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.