/** * Author: Josiah Yoder et al. * Class: SE2811-011 * Date: 12/9/13 8:27 AM * Lesson: Week 2, Day 2 */ package example2_3.ducks; import java.awt.Point; public class Floating implements SwimBehavior { public Floating() { } public Point swim(Point topLeft) { System.out.println("Just floating. That's it."); return topLeft; } }