Junichiro.java

 /**
  * Junichiro.java - Version 1.0.0
  *
  * Programmed by Junichiro Sueishi in 2003.
  * j@nextclue.com
  *
  */
 
 public class Junichiro extends Prayer {
     private static Junichiro jun = new Junichiro();    
     private int faithFrequency = 1000;
     
     private Junichiro() {
         super() ;
     }
     
     public static synchronized Junichiro getLife(Object obj) {
         if ((obj.getClass().getName().equals("Faith")) ||
             (obj.getClass().getName().equals("Jesus"))||
             (obj.getClass().getName().equals("God"))) {
             return jun;
         }
         return null;
     }    
 }