/** * Author: Josiah Yoder et al. * Class: SE2811-011 * Date: 12/9/13 8:27 AM * Lesson: Week 2, Day 2 */ package example2_2; import java.awt.Point; public interface SwimBehavior { public Point swim(Point topLeft); }