
de.undercouch.citeproc.helper.json.MapJsonBuilderFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of citeproc-java Show documentation
Show all versions of citeproc-java Show documentation
A Citation Style Language (CSL) Processor for Java.
package de.undercouch.citeproc.helper.json;
/**
* A {@link JsonBuilderFactory} that always builds {@link MapJsonBuilder}s
* @author Michel Kraemer
*/
public class MapJsonBuilderFactory implements JsonBuilderFactory {
@Override
public JsonBuilder createJsonBuilder() {
return new MapJsonBuilder(this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy