Examples of BibtexEntry


Examples of net.sf.jabref.BibtexEntry

    // forall bibtex keys (found in aux-file) try to find an equivalent
    // entry into reference database
    while (it.hasNext())
    {
      String str = it.next() ;
      BibtexEntry entry = db.getEntryByKey(str);

      if (entry == null)
      {
        notFoundList.add(str) ;
      } else
      {
          insertEntry(auxDB, entry);
          // Check if the entry we just found references another entry which
          // we don't already have in our list of entries to include. If so,
          // pull in that entry as well:
          String crossref = entry.getField("crossref");
          if ((crossref != null) && (!mySet.contains(crossref))) {
              BibtexEntry refEntry = db.getEntryByKey(crossref);
              /**
               * [ 1717849 ] Patch for aux import by Kai Eckert
               */
              if (refEntry == null) {
                  notFoundList.add(crossref);
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.