Package org.erlide.cover.runtime.launch

Examples of org.erlide.cover.runtime.launch.LaunchType


        try {
            final String type = config.getAttribute(ICoverAttributes.TYPE,
                    LaunchType.MODULE.toString());

            final LaunchType typeT = LaunchType.valueOf(type);
            switch (typeT) {
            case MODULE:

                singleRadio.setSelection(true);
View Full Code Here


    }

    @Override
    public void performApply(final ILaunchConfigurationWorkingCopy config) {

        LaunchType type;
        if (allRadio.getSelection()) {
            type = LaunchType.ALL;
        } else {
            type = LaunchType.MODULE;
        }

        config.setAttribute(ICoverAttributes.PROJECT, projectMBr.getText());
        config.setAttribute(ICoverAttributes.MODULE, moduleBr.getText());
        config.setAttribute(ICoverAttributes.FILE, fileBr.getText());
        config.setAttribute(ICoverAttributes.TYPE, type.toString());
        config.setAttribute(ICoverAttributes.COMBO, testCombo.getText());
    }
View Full Code Here

TOP

Related Classes of org.erlide.cover.runtime.launch.LaunchType

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.