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

net.sourceforge.pmd.lang.xml.antlr4.XMLLexer Maven / Gradle / Ivy

The newest version!
/**
 * BSD-style license; for more info see http://pmd.sourceforge.net/license.html
 */

package net.sourceforge.pmd.lang.xml.antlr4;

import org.antlr.v4.runtime.CharStream;

/**
 * Backwards compatible bridge. The XMLLexer was moved to align it with other PMD modules.
 * This class will be removed in PMD 8.0.0.
 * Use {@link net.sourceforge.pmd.lang.xml.ast.XMLLexer} directly instead.
 *
 * @deprecated since 7.8.0. Use {@link net.sourceforge.pmd.lang.xml.ast.XMLLexer} directly instead.
 */
@Deprecated
public class XMLLexer extends net.sourceforge.pmd.lang.xml.ast.XMLLexer {
    public XMLLexer(CharStream input) {
        super(input);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy