/** *
* Aquarium.java * * Revisions: 1.0 Sep. 26, 2002 * Created the Aquarium class * 1.1 Sep. 28, 2002 * Finished, Compiled, Commented * ** * Collaboration Statement: * I worked on the homework assignment alone, using only * course materials. * * Created with JCreatorLE, some indents are off when viewed through notepad * or EMACS * * @author Jose Manuel Caban * @version Version 1.1, Sep. 28, 2002 */ public class Aquarium extends ZooBuilding{ //////////////// //Constructors// //////////////// /** *Constructor for Aquarium *@param name the name for the Aquarium */ public Aquarium(String name){ super(name); } /////////// //Methods// /////////// /** *@return true if it is safe to enter *Safe if all dangerous animals are 30 feet underwater */ public boolean isSafeToEnter(){ Animal aTemp; SwimmingType sTemp; boolean bSafe = true; for(int i=0; i