KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > javacoding > jspider > Constants


1 package net.javacoding.jspider;
2
3
4 /**
5  * Interface with some constants we need.
6  *
7  * $Id: Constants.java,v 1.10 2003/04/10 16:19:03 vanrogu Exp $
8  *
9  * @author Günther Van Roey
10  */

11 public interface Constants {
12
13     /** Version of this source. */
14     public static final String JavaDoc VERSION = "@jspider.version.number@";
15
16
17     /** Versionstring for this source. */
18     public static final String JavaDoc VERSIONSTRING = "@jspider.version.string@";
19
20
21     /** Versionstring for this source. */
22     public static final String JavaDoc BUILDTIMESTAMP = "@build.DSTAMP@";
23
24
25
26     /**
27      * Useragent for this build.
28      */

29     public static final String JavaDoc USERAGENT = "JSpider v" + VERSION + " (http://j-spider.sourceforge.net)";
30
31 }
Popular Tags