Package org.erlide.engine.services.search

Examples of org.erlide.engine.services.search.IncludeOpenResult


      if (!_matched) {
        if (Objects.equal(kind, "include")) {
          _matched=true;
          OtpErlangObject _elementAt_7 = openTuple.elementAt(1);
          String _stringValue = Util.stringValue(_elementAt_7);
          return new IncludeOpenResult(_stringValue, null);
        }
      }
      if (!_matched) {
        if (Objects.equal(kind, "include_lib")) {
          _matched=true;
          OtpErlangObject _elementAt_8 = openTuple.elementAt(1);
          String _stringValue_1 = Util.stringValue(_elementAt_8);
          OtpErlangObject _elementAt_9 = openTuple.elementAt(2);
          String _stringValue_2 = Util.stringValue(_elementAt_9);
          return new IncludeOpenResult(_stringValue_1, _stringValue_2);
        }
      }
      if (!_matched) {
        if (Objects.equal(kind, "record")) {
          _matched=true;
View Full Code Here

TOP

Related Classes of org.erlide.engine.services.search.IncludeOpenResult

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.