Library.java |
/* * $Id: Library.java,v 1.1 2003/04/26 16:27:11 znerd Exp $ */ package org.znerd.xmlenc; /** * Class that represents this <em>xmlenc</em> library. * * @version $Revision: 1.1 $ $Date: 2003/04/26 16:27:11 $ * @author Ernst de Haan (<a href="mailto:znerd@FreeBSD.org">znerd@FreeBSD.org</a>) * * @since xmlenc 0.30 */ public final class Library extends Object { //------------------------------------------------------------------------- // Class fields //------------------------------------------------------------------------- //------------------------------------------------------------------------- // Class functions //------------------------------------------------------------------------- /** * Returns the version of the <em>xmlenc</em> library. * * @return * the version of this library, for example <code>"0.39"</code>, * never <code>null</code>. */ public static final String getVersion() { return "0.39"; } //------------------------------------------------------------------------- // Constructors //------------------------------------------------------------------------- /** * Constructs a new <code>Library</code> object. */ private Library() { // empty } //------------------------------------------------------------------------- // Fields //------------------------------------------------------------------------- //------------------------------------------------------------------------- // Methods //------------------------------------------------------------------------- }