import java.io.PrintWriter; /** * A generic way of representing a location in the amazingly abstract * assembly language (AAAL). Intended to be subclassed in many * different ways. * * @author Samuel A. Rebelsky * Version 1.0 of April 2001 */ public interface Location { /** * Print the memory location. */ public void print(PrintWriter out); } // interface Location