01: package com.acme.sp;
02:
03: import java.lang.*;
04:
05: /**
06: * This application does nothing, but should compile cleanly
07: * and demonstrate how to use JDiff to track changes in API between
08: * versions of products.
09: */
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 args[]) {
20: }
21: }
|