KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > acme > sp > Main


1 package com.acme.sp;
2
3 import java.lang.*;
4
5 /**
6  * This application does nothing, but should compile cleanly
7  * and demonstrate how to use JDiff to track changes in API between
8  * versions of products.
9  */

10 public class Main {
11
12     /**
13      * The main program for SuperProduct.
14      * Since this API does not change between versions, it does not
15      * appear in the reported differences.
16      *
17      * @param args The command line arguments
18      */

19     public static void main(String JavaDoc args[]) {
20     }
21 }
22
Popular Tags