Package org.erlide.backend.api.ICodeBundle

Examples of org.erlide.backend.api.ICodeBundle.CodeContext


        for (final IConfigurationElement el : extension.getConfigurationElements()) {
            if ("beam_dir".equals(el.getName())) {
                final String dir = el.getAttribute("path");
                final String t = el.getAttribute("context").toUpperCase();

                final CodeContext type = Enum.valueOf(CodeContext.class, t);
                paths.put(type, dir);
            } else if ("init".equals(el.getName())) {
                final String module = el.getAttribute("module");
                final String function = el.getAttribute("function");
                inits.add(new Pair<String, String>(module, function));
View Full Code Here

TOP

Related Classes of org.erlide.backend.api.ICodeBundle.CodeContext

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.