Examples of ErlangSearchElement


Examples of org.erlide.ui.internal.search.ErlangSearchElement

    }
    return result;
  }
 
  public static Match createMatch(final ModuleLineFunctionArityRef ref, final Map<String, IErlModule> pathToModuleMap) {
    final ErlangSearchElement ese = SearchUtil.createSearchElementFromRef(ref, pathToModuleMap);
    int _offset = ref.getOffset();
    int _length = ref.getLength();
    return new Match(ese, _offset, _length);
  }
View Full Code Here

Examples of org.erlide.ui.internal.search.ErlangSearchElement

    String _name = ref.getName();
    int _arity = ref.getArity();
    String _clauseHead = ref.getClauseHead();
    boolean _isSubClause = ref.isSubClause();
    ErlElementKind _refToKind = SearchUtil.refToKind(ref);
    return new ErlangSearchElement(module, _modulePath, _name, _arity, _clauseHead, _isSubClause, _refToKind);
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.