All Downloads are FREE. Search and download functionalities are using the official Maven repository.

info.bliki.wiki.dump.InfoBox Maven / Gradle / Ivy

The newest version!
package info.bliki.wiki.dump;

/**
 * A class abstracting a Wiki infobox.
 *
 *
 * Copied and modified from the WikiXMLJ project.
 *
 * @author Delip Rao modified by Axel Kramer
 */
public class InfoBox {
    String infoBoxWikiText = null;

    InfoBox(String infoBoxWikiText) {
        this.infoBoxWikiText = infoBoxWikiText;
    }

    public String dumpRaw() {
        return infoBoxWikiText;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy