Package org.jetbrains.plugins.clojure.psi.api

Examples of org.jetbrains.plugins.clojure.psi.api.ClKeyword


  }

  public ClojurePsiElement getValue(final String key) {
    final ClMapEntry entry = ContainerUtil.find(getEntries(), new Condition<ClMapEntry>() {
      public boolean value(ClMapEntry clMapEntry) {
        final ClKeyword clKeyword = clMapEntry.getKeywordKey();
        if (clKeyword == null) return false;
        final String text = StringUtil.trimStart(clKeyword.getText(), ":");
        return text.equals(key);
      }
    });
    if (entry == null) return null;
    return entry.getValue();
View Full Code Here

TOP

Related Classes of org.jetbrains.plugins.clojure.psi.api.ClKeyword

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.