/**
 * The OutputFormatter object will format output from the Comparison Checker 
 * object and from the Instructor Notification Object.
 *
 * @author Rikhei Harris
 * @author Andrew Kaiser
 * @author Jonathan Wellons
 * @version 1.0 of March 2001
 */

public class OutputFormatter1 { 
    
    // This method will return the results of the comparison between the
    // authority program tests and the user program tests in the format of a 
    // String.
    
    public String returnComparison() {
        // The following lines were only written to facilitate compilation; 
        // they will be replaced by code which will get the results of the
        // comparison at a later time.
        String blah = "Hi!"; 
        return blah;
} // returnComparison()
    
    // This method will return a notification to the user that the file and
    // results of the comparison were or were not sent to the instructor
    // successfully.
    
    public String returnNotification() {
        // The following lines were only written to facilitate compilation; 
        // they will be replaced by code which will notify the user whether
        // the notification was successful or not at a later time.
        String boing = "Hello!";
        return boing;
    } // returnNotification()
} // OutputFormatter1

