home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1998 July & August / Pcwk78a98.iso / Micrsoft / VJ / VJ98 / VJPROJS / APPLICAT / CONSAPPL / CONSAPPL.JAV next >
Text File  |  1998-02-11  |  540b  |  22 lines

  1. // Class1.java
  2.  
  3. /**
  4.  * This class can take a variable number of parameters on the command
  5.  * line. Program execution begins with the main() method. The class
  6.  * constructor is not invoked unless an object of type 'Class1'
  7.  * created in the main() method.
  8.  */
  9. public class Class1
  10. {
  11.     /**
  12.      * The main entry point for the application. 
  13.      *
  14.      * @param args Array of parameters passed to the application
  15.      * via the command line.
  16.      */
  17.     public static void main (String[] args)
  18.     {
  19.         // TODO: Add initialization code here
  20.     }
  21. }
  22.