/** *
* FlyingType.java * * Revisions: 1.0 Sep. 21, 2002 * Created the FlyingType interface * 1.1 Sep. 29, 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. 29, 2002 */ public interface FlyingType { /** *set altitude of Animal *@param altitude, the altitude of the animal */ public void setAltitude(int alt); /** *@return altitude of the animal */ public int getAltitude(); }// end of class FlyingType