Package org.erlide.engine.model.root

Examples of org.erlide.engine.model.root.ErlElementKind


     * @Override public ITextEditor getEditor() { return editor; }
     */

    @Override
    public SelectionKind getKind() {
        final ErlElementKind k = getErlElement().getKind();
        if (k == ErlElementKind.CLAUSE) {
            return SelectionKind.FUNCTION_CLAUSE;
        } else if (k == ErlElementKind.FUNCTION) {
            return SelectionKind.FUNCTION;
        } else {
View Full Code Here

TOP

Related Classes of org.erlide.engine.model.root.ErlElementKind

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.