/** *
* SwimmingType.java * * Revisions: 1.0 Sep. 21, 2002 * Created the SwimmingType interface * 1.1 Sep. 28, 2002 * 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 interface SwimmingType { /** *@param depth, the depth to set animal at */ public void setDepth(int depth); /** *@return the depth of the animal */ public int getDepth(); }// end of class SwimmingType