/* Class: MainClassTemplate Author: Your_Name(s) with assistance from: people who helped (including instructor/TAs) Creation date: date Modifications: Date Name reason ---- ---- ------ */ // Package declaration goes here. // package Package_Name; // Import statements go here. // import java.awt.Color; // import java.io.*; // import java.util.*; /** The MainClassTemplate class provides a main method for a program that does X. A more detailed description goes here, if necessary. @author Your_Name @author Your_Partner */ public class MainClassTemplate { /** Start the program. * The String arguments (args) are not used in this application. **/ public static void main(String[] args) { System.out.println ("Welcome to Programming Project X."); // Construct one or more objects, then invoke one or more // methods to get the program started. For example: // ClassTemplate tempObject = new ClassTemplate(Color.red); // Color col = tempObject.color(); // System.out.println("Object's color is " + col); System.out.println ("Program done."); } }