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

de.undercouch.citeproc.csl.internal.rendering.SNumber Maven / Gradle / Ivy

package de.undercouch.citeproc.csl.internal.rendering;

import org.w3c.dom.Node;

/**
 * A number element from a style file
 * @author Michel Kraemer
 */
public class SNumber extends SText {
    /**
     * Creates the number element from an XML node
     * @param node the XML node
     */
    public SNumber(Node node) {
        super(node);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy