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

de.undercouch.citeproc.csl.internal.rendering.condition.SElse Maven / Gradle / Ivy

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

import de.undercouch.citeproc.csl.internal.RenderContext;
import org.w3c.dom.Node;

/**
 * A conditional element that always matches
 * @author Michel Kraemer
 */
public class SElse extends SCondition {
    /**
     * Create the element from an XML node
     * @param node the XML node
     */
    public SElse(Node node) {
        super(node);
    }

    @Override
    public boolean matches(RenderContext ctx) {
        return true;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy