first commit
This commit is contained in:
36
CS1322/p2/FlyingType.java
Normal file
36
CS1322/p2/FlyingType.java
Normal file
@@ -0,0 +1,36 @@
|
||||
/**
|
||||
* <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
|
||||
Reference in New Issue
Block a user