KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > lutris > Enhydra


1
2 /*
3  * Enhydra Java Application Server Project
4  *
5  * The contents of this file are subject to the Enhydra Public License
6  * Version 1.1 (the "License"); you may not use this file except in
7  * compliance with the License. You may obtain a copy of the License on
8  * the Enhydra web site ( http://www.enhydra.org/ ).
9  *
10  * Software distributed under the License is distributed on an "AS IS"
11  * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
12  * the License for the specific terms governing rights and limitations
13  * under the License.
14  *
15  * The Initial Developer of the Enhydra Application Server is Lutris
16  * Technologies, Inc. The Enhydra Application Server and portions created
17  * by Lutris Technologies, Inc. are Copyright Lutris Technologies, Inc.
18  * All Rights Reserved.
19  *
20  * Contributor(s):
21  *
22  * $Id: Enhydra.java,v 1.6 2005/07/27 11:17:40 slobodan Exp $
23  */

24
25 package com.lutris;
26
27 /**
28  * Provides static information, such as version number, about the software
29  * contained in enhydra.jar.
30  */

31 public class Enhydra {
32
33     /**
34      * Long name of Enhydra (with spaces).
35      */

36     private static final String JavaDoc ENHYDRA_LONG_NAME = "Enhydra Application Framework";
37
38
39     /**
40      * Modify this field and the make macro in config.mk when changing
41      * version numbers.
42      */

43     private static final String JavaDoc ENHYDRA_VERSION = "6.5";
44
45
46     /**
47      * Get long, English-language name for Enhydra.
48      */

49     public static final String JavaDoc getEnhydraLongName() {
50         return ENHYDRA_LONG_NAME;
51     }
52
53
54     /**
55      * Get the version number of Enhydra.
56      */

57     public static final String JavaDoc getEnhydraVersion() {
58         return ENHYDRA_VERSION;
59     }
60
61
62     /**
63      * Disallow instantiation.
64      */

65     protected Enhydra() {
66     }
67
68 }
69
Popular Tags