package edu.pdx.cs410J.lang; /** * This interface is implemented by all animals that can fly. */ public interface Flies { void fly(); }