use of org.jabref.logic.cleanup.MoveFieldCleanup in project jabref by JabRef.
the class MathSciNet method doPostCleanup.
@Override
public void doPostCleanup(BibEntry entry) {
new MoveFieldCleanup("fjournal", FieldName.JOURNAL).cleanup(entry);
new MoveFieldCleanup("mrclass", FieldName.KEYWORDS).cleanup(entry);
new FieldFormatterCleanup("mrreviewer", new ClearFormatter()).cleanup(entry);
new FieldFormatterCleanup(FieldName.URL, new ClearFormatter()).cleanup(entry);
}
use of org.jabref.logic.cleanup.MoveFieldCleanup in project jabref by JabRef.
the class AstrophysicsDataSystem method doPostCleanup.
@Override
public void doPostCleanup(BibEntry entry) {
new FieldFormatterCleanup(FieldName.ABSTRACT, new RemoveBracesFormatter()).cleanup(entry);
new FieldFormatterCleanup(FieldName.TITLE, new RemoveBracesFormatter()).cleanup(entry);
new FieldFormatterCleanup(FieldName.AUTHOR, new NormalizeNamesFormatter()).cleanup(entry);
// Remove ADS note
new FieldFormatterCleanup("adsnote", new ClearFormatter()).cleanup(entry);
// Move adsurl to url field
new MoveFieldCleanup("adsurl", FieldName.URL).cleanup(entry);
}
use of org.jabref.logic.cleanup.MoveFieldCleanup in project jabref by JabRef.
the class zbMATH method doPostCleanup.
@Override
public void doPostCleanup(BibEntry entry) {
new MoveFieldCleanup("msc2010", FieldName.KEYWORDS).cleanup(entry);
new MoveFieldCleanup("fjournal", FieldName.JOURNAL).cleanup(entry);
new FieldFormatterCleanup(FieldName.JOURNAL, new RemoveBracesFormatter()).cleanup(entry);
new FieldFormatterCleanup(FieldName.TITLE, new RemoveBracesFormatter()).cleanup(entry);
}
Aggregations