KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > hp > hpl > jena > Jena


1 /*****************************************************************************
2  * Source code information
3  * -----------------------
4  * Original author Ian Dickinson, HP Labs Bristol
5  * Author email Ian.Dickinson@hp.com
6  * Package Jena 2
7  * Web http://sourceforge.net/projects/jena/
8  * Created 01-Aug-2003
9  * Filename $RCSfile: Jena.java,v $
10  * Revision $Revision: 1.5 $
11  * Release status $State: Exp $
12  *
13  * Last modified on $Date: 2005/02/21 11:58:49 $
14  * by $Author: andy_seaborne $
15  *
16  * (c) Copyright 2002, 2003, 2004, 2005 Hewlett-Packard Development Company, LP
17  * (see footer for full conditions)
18  *****************************************************************************/

19
20 // Package
21
///////////////
22
package com.hp.hpl.jena;
23
24
25 // Imports
26
///////////////
27

28
29 /**
30  * <p>
31  * Provides various meta-data constants about the Jena package.
32  * </p>
33  *
34  * @author Ian Dickinson, HP Labs
35  * (<a HREF="mailto:Ian.Dickinson@hp.com" >email</a>)
36  * @version Version 2.2, CVS $Id: Jena.java,v 1.5 2005/02/21 11:58:49 andy_seaborne Exp $
37  */

38 public interface Jena
39 {
40     // Constants
41
//////////////////////////////////
42

43
44     /** The root package name for Jena */
45     public static final String JavaDoc PATH = "com.hp.hpl.jena";
46     
47     /** The product name */
48     public static final String JavaDoc NAME = "Jena";
49     
50     /** The Jena web site */
51     public static final String JavaDoc WEBSITE = "http://jena.sourceforge.net/";
52     
53     /** The full name of the current Jena version */
54     public static final String JavaDoc VERSION = "2.2";
55     
56     /** The major version number for this release of Jena (ie '2' for Jena 2.0) */
57     public static final String JavaDoc MAJOR_VERSION = "2";
58     
59     /** The minor version number for this release of Jena (ie '0' for Jena 2.0) */
60     public static final String JavaDoc MINOR_VERSION = "2";
61     
62     /** The version status for this release of Jena (eg '-beta1' or the empty string) */
63     public static final String JavaDoc VERSION_STATUS = "";
64     
65     /** The date and time at which this release was built */
66     public static final String JavaDoc BUILD_DATE = "19-April-2005 14:33";
67     
68
69     // External signature methods
70
//////////////////////////////////
71

72     // Internal implementation methods
73
//////////////////////////////////
74

75     //==============================================================================
76
// Inner class definitions
77
//==============================================================================
78

79 }
80
81
82 /*
83     (c) Copyright 2002, 2003, 2004, 2005 Hewlett-Packard Development Company, LP
84     All rights reserved.
85
86     Redistribution and use in source and binary forms, with or without
87     modification, are permitted provided that the following conditions
88     are met:
89
90     1. Redistributions of source code must retain the above copyright
91        notice, this list of conditions and the following disclaimer.
92
93     2. Redistributions in binary form must reproduce the above copyright
94        notice, this list of conditions and the following disclaimer in the
95        documentation and/or other materials provided with the distribution.
96
97     3. The name of the author may not be used to endorse or promote products
98        derived from this software without specific prior written permission.
99
100     THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
101     IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
102     OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
103     IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
104     INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
105     NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
106     DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
107     THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
108     (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
109     THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
110 */

111
Popular Tags