();
- for (EntryType entryType : bibTeXFields.keySet()) {
- entryTypes.put(bibTeXFields.get(entryType), entryType);
- }
- }
-
- /**
- * Return BibTeX field name corresponding to and entry type
- *
- * @param entryType
- * the entry type
- * @return the BibTeX field name, or null if there is no corresponding
- * BibTeX field
- */
- public static final String getFieldName(EntryType entryType) {
- if (bibTeXFields == null) {
- createMaps();
- }
- return bibTeXFields.containsKey(entryType) ? bibTeXFields.get(entryType) : null;
- }
-
- /**
- * Return entry type corresponding to a BibTeX field
- *
- * @param sFieldName
- * the BibTeX field name
- * @return the entry type, or null if there is no corresponding entry type
- */
- public static final EntryType getEntryType(String sFieldName) {
- if (bibTeXFields == null) {
- createMaps();
- }
- sFieldName = sFieldName.toLowerCase();
- return entryTypes.containsKey(sFieldName) ? entryTypes.get(sFieldName) : null;
- }
-}
diff --git a/src/main/java/writer2latex/bibtex/Package.html b/src/main/java/writer2latex/bibtex/Package.html
deleted file mode 100644
index 652abe9..0000000
--- a/src/main/java/writer2latex/bibtex/Package.html
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-
-
- The package writer2latex.bibtex
-
-
-
-This package contains BibTeX specific code.
-It contains a writerlatex.api.Converter
implementation for
-conversion into BibTeX, as well as code to convert to BibTeX as part of a
-conversion into LaTeX.
-
-