1 /*2 * $Id: Library.java,v 1.1 2003/04/26 16:27:11 znerd Exp $3 */4 package org.znerd.xmlenc;5 6 /**7 * Class that represents this <em>xmlenc</em> library.8 *9 * @version $Revision: 1.1 $ $Date: 2003/04/26 16:27:11 $10 * @author Ernst de Haan (<a HREF="mailto:znerd@FreeBSD.org">znerd@FreeBSD.org</a>)11 *12 * @since xmlenc 0.3013 */14 public final class Library extends Object {15 16 //-------------------------------------------------------------------------17 // Class fields18 //-------------------------------------------------------------------------19 20 //-------------------------------------------------------------------------21 // Class functions22 //-------------------------------------------------------------------------23 24 /**25 * Returns the version of the <em>xmlenc</em> library.26 *27 * @return28 * the version of this library, for example <code>"%%VERSION%%"</code>,29 * never <code>null</code>.30 */31 public static final String getVersion() {32 return "%%VERSION%%";33 }34 35 36 //-------------------------------------------------------------------------37 // Constructors38 //-------------------------------------------------------------------------39 40 /**41 * Constructs a new <code>Library</code> object.42 */43 private Library() {44 // empty45 }46 47 48 //-------------------------------------------------------------------------49 // Fields50 //-------------------------------------------------------------------------51 52 //-------------------------------------------------------------------------53 // Methods54 //-------------------------------------------------------------------------55 }56