org.cyberneko.html.Version Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nekohtml Show documentation
Show all versions of nekohtml Show documentation
An HTML parser and tag balancer.
The newest version!
/* (C) Copyright 2002-2014, Andy Clark, Marc Guillemot. All rights reserved. */
package org.cyberneko.html;
/**
* This class holds version information for the CyberNeko HTML Parser.
*
* @author Andy Clark, Marc Guillemot
*/
public class Version {
/** Returns the version string. */
public static String getVersion() { return "NekoHTML 1.9.22"; }
/** Prints the version string to standard output. */
public static void main(String[] argv) {
System.out.println(getVersion());
} // main(String[])
} // class Version