KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > znerd > xmlenc > Library


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.30
13  */

14 public final class Library extends Object JavaDoc {
15
16    //-------------------------------------------------------------------------
17
// Class fields
18
//-------------------------------------------------------------------------
19

20    //-------------------------------------------------------------------------
21
// Class functions
22
//-------------------------------------------------------------------------
23

24    /**
25     * Returns the version of the <em>xmlenc</em> library.
26     *
27     * @return
28     * the version of this library, for example <code>"%%VERSION%%"</code>,
29     * never <code>null</code>.
30     */

31    public static final String JavaDoc getVersion() {
32       return "%%VERSION%%";
33    }
34
35
36    //-------------------------------------------------------------------------
37
// Constructors
38
//-------------------------------------------------------------------------
39

40    /**
41     * Constructs a new <code>Library</code> object.
42     */

43    private Library() {
44       // empty
45
}
46
47
48    //-------------------------------------------------------------------------
49
// Fields
50
//-------------------------------------------------------------------------
51

52    //-------------------------------------------------------------------------
53
// Methods
54
//-------------------------------------------------------------------------
55
}
56
Popular Tags