/**
* Code to attempt to instantiate an object defined by an abstract class. 
* Note the compile error message shown as a comment at the bottom of the code
* 
* @author  Elizabeth Adams
* 
*/
public class TestAC
{
   public static void main (String [] args)
	{
	   AC myAC;
		String temp;
		
		myAC = new AC();
		temp = myAC.getMessage();
		System.out.println(temp);
	}
}
/*
    ----jGRASP exec: javac -source 1.5 G:\Spring 2005 Lectures\TestAC.java
   
   TestAC.java:8: AC is abstract; cannot be instantiated
   __myAC = new AC();
                 ^
   1 error
   
    ----jGRASP wedge2: exit code for process is 1.
    ----jGRASP: operation complete.
*/		