Constants.java
上传用户:qing5858
上传日期:2015-10-27
资源大小:6056k
文件大小:1k
源码类别:

搜索引擎

开发平台:

Java

  1. package net.javacoding.jspider;
  2. /**
  3.  * Interface with some constants we need.
  4.  *
  5.  * $Id: Constants.java,v 1.10 2003/04/10 16:19:03 vanrogu Exp $
  6.  *
  7.  * @author G黱ther Van Roey
  8.  */
  9. public interface Constants {
  10.     /** Version of this source. */
  11.     public static final String VERSION = "@jspider.version.number@";
  12.     /** Versionstring for this source. */
  13.     public static final String VERSIONSTRING = "@jspider.version.string@";
  14.     /** Versionstring for this source. */
  15.     public static final String BUILDTIMESTAMP = "@build.DSTAMP@";
  16.     /**
  17.      * Useragent for this build.
  18.      */
  19.     public static final String USERAGENT = "JSpider v" + VERSION + " (http://j-spider.sourceforge.net)";
  20. }