001package edu.pdx.cs410J.lang;
002
003/**
004 * This interface is implemented by all animals that can fly.
005 */
006public interface Flies {
007
008  void fly();
009
010}