1: // SmallConsoleApplication.java
2: // A "shell" for any small, simple console application
3:
4:
5: public class SmallConsoleApplication
6: {
7: // Put any required instance variables here ...
8:
9: // Do whatever needs to be done in the main function
10: public static void main(String[] args)
11: {
12: // Method body
13: }
14:
15:
16: // More methods to perform required tasks ...
17: public void doIt(/* ... */)
18: {
19: // Method body ...
20: }
21: }