koppor / jabref

Collection of simple for JabRef issues. Please submit PRs to https://github.com/jabRef/jabref/.
https://github.com/jabRef/jabref/
MIT License
8 stars 14 forks source link

Introduce catalog-specific queries #607

Open koppor opened 1 year ago

koppor commented 1 year ago
    /**
     * @param searchQueries The user-provided queries. TODO: Change to "object": title, Lucene-query, map: fetcher -> fetcher-specific query, on error, the original string is used (maybe highlight in the UI)
     */
    StudyFetcher(List<SearchBasedFetcher> activeFetchers, List<String> searchQueries) throws IllegalArgumentException {
        this.searchQueries = searchQueries;
        this.activeFetchers = activeFetchers;
    }
koppor commented 1 year ago