Package org.erlide.core.builder

Examples of org.erlide.core.builder.CompilerOption$WarningOption


public class CompilerOptionTest {

    @Test
    public void testFind() {
        final CompilerOption option = CompilerOption.WARN_EXPORT_ALL;
        Assert.assertEquals("warn_export_all", option.getName());
        Assert.assertEquals(WarningOption.class, option.getClass());
    }
View Full Code Here


        super.performDefaults();
    }

    private void updateUI() {
        for (final Button b : optionButtons) {
            final CompilerOption key = (CompilerOption) b.getData();
            b.setSelection(prefs.getBooleanOption(key));
        }
        final Iterable<String> paths = prefs.getPathsOption(CompilerOption.INCLUDE_DIRS);
        if (paths != null) {
            includeDirsText.setText(PathsOption.toString(paths));
View Full Code Here

TOP

Related Classes of org.erlide.core.builder.CompilerOption$WarningOption

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.