37 lines
825 B
Java
37 lines
825 B
Java
/**
|
|
* <PRE>
|
|
* FlyingType.java
|
|
*
|
|
* Revisions: 1.0 Sep. 21, 2002
|
|
* Created the FlyingType interface
|
|
* 1.1 Sep. 29, 2002
|
|
* Commented
|
|
*
|
|
* </PRE>
|
|
*
|
|
* 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 <A HREF="mailto:gtg184g@mail.gatech.edu">Jose Manuel Caban</A>
|
|
* @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
|