/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package ArchivesUI;

/**
 *
 * @author Robin Hood
 */
public class PrinterTomAndJerry {
    
    
  String tom = "tom";
  String jerry = "jerry";
  String yay = "tom and jerry";

    public String printer(String s){
        if(s.equalsIgnoreCase(tom)){
            return "Hey, where's Jerry?";
        }else if(s.equalsIgnoreCase(jerry)){
            return "Hey, where's Tom?";
        }else if(s.equalsIgnoreCase(yay)){
            return "YAY!!!";
        }
        return "";
    }

    
}
