Package org.openbel.framework.api

Examples of org.openbel.framework.api.NamespaceFilterCriteria


            NamespaceFilter namespaceFilter) throws SQLException {
        List<BelTerm> termList = getSupportingTerms(kamNode);

        if (namespaceFilter != null) {
            for (FilterCriteria criterion : namespaceFilter.getFilterCriteria()) {
                NamespaceFilterCriteria nfc =
                        (NamespaceFilterCriteria) criterion;
                Set<Integer> targetNamespaceIds = new HashSet<Integer>();
                for (Namespace ns : nfc.getValues()) {
                    targetNamespaceIds.add(ns.getId());
                }
                List<BelTerm> matchedTerms = new ArrayList<BelTerm>();
                for (BelTerm term : termList) {
                    List<TermParameter> params = getTermParameters(term);
View Full Code Here

TOP

Related Classes of org.openbel.framework.api.NamespaceFilterCriteria

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.