Example usage for com.google.gwt.eclipse.core.launch.ui EntryPointModulesSelectionBlock EntryPointModulesSelectionBlock

List of usage examples for com.google.gwt.eclipse.core.launch.ui EntryPointModulesSelectionBlock EntryPointModulesSelectionBlock

Introduction

In this page you can find the example usage for com.google.gwt.eclipse.core.launch.ui EntryPointModulesSelectionBlock EntryPointModulesSelectionBlock.

Prototype

public EntryPointModulesSelectionBlock(String labelText, IModulesChangeListener listener) 

Source Link

Usage

From source file:com.myeclipsedev.gdt.eclipse.ui.internal.wizard.WebComponentExportPage.java

License:Open Source License

private void createEntryPointModulesComponent(Composite parent) {
    Group group = new Group(parent, SWT.BORDER);
    group.setText("Entry Point Modules");

    group.setLayout(new GridLayout(3, false));

    group.setLayoutData(new GridData(GridData.FILL_BOTH));

    GridLayout groupLayout = (GridLayout) group.getLayout();
    groupLayout.marginBottom = 8;//  w ww.j av a 2 s.c o  m
    group.setLayout(groupLayout);

    entryPointModulesBlock = new EntryPointModulesSelectionBlock(null, listener);
    entryPointModulesBlock.doFillIntoGrid(group, 3);
}