KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > javacoding > jspider > core > impl > CLI


1 package net.javacoding.jspider.core.impl;
2
3 import net.javacoding.jspider.Constants;
4
5 import java.io.File JavaDoc;
6
7 /**
8  * $Id: CLI.java,v 1.1 2003/03/24 16:58:35 vanrogu Exp $
9  */

10 public class CLI {
11
12     public static void printSignature ( ) {
13         System.err.println(Constants.VERSIONSTRING);
14         System.err.println("Build: " + Constants.BUILDTIMESTAMP);
15         System.err.println("Started from " + new File JavaDoc("."));
16     }
17
18 }
19
Popular Tags