Package org.erlide.cover.ui.launch.helpers

Examples of org.erlide.cover.ui.launch.helpers.ProjectLabelProvider


    }

    private void createModuleGroup(final Composite comp) {

        final ElementListSelectionDialog projectDialog = new ElementListSelectionDialog(
                getShell(), new ProjectLabelProvider());

        final Object[] elements = createProjectArray();

        projectDialog.setElements(elements);
        projectDialog.setTitle("Select project");
        projectDialog.setMessage("Select Erlang project: ");

        moduleDialog = new ElementListSelectionDialog(getShell(),
                new ProjectLabelProvider());

        moduleDialog.setElements(new Object[0]);
        moduleDialog.setTitle("Select module");
        moduleDialog.setMessage("Select Erlang module: ");
View Full Code Here


    }

    private void createAllTestsGroup(final Composite comp) {

        final ElementListSelectionDialog projectDialog = new ElementListSelectionDialog(
                getShell(), new ProjectLabelProvider());

        final Object[] elements = createProjectArray();

        projectDialog.setElements(elements);
        projectDialog.setTitle("Select project");
View Full Code Here

TOP

Related Classes of org.erlide.cover.ui.launch.helpers.ProjectLabelProvider

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.