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

org.cyberneko.html.Version Maven / Gradle / Ivy

/* (C) Copyright 2002-2008, Andy Clark. All rights reserved. */

package org.cyberneko.html;

/**
 * This class holds version information for the CyberNeko HTML Parser.
 *
 * @author Andy Clark
 */
public class Version {

    /** Returns the version string. */
    public static String getVersion() { return "NekoHTML 1.9.12"; }

    /** Prints the version string to standard output. */
    public static void main(String[] argv) {
        System.out.println(getVersion());
    } // main(String[])

} // class Version




© 2015 - 2024 Weber Informatics LLC | Privacy Policy