Package com.visionarysoftwaresolutions.hfdpch1.tddstyle.ducks

Source Code of com.visionarysoftwaresolutions.hfdpch1.tddstyle.ducks.RubberDuck

package com.visionarysoftwaresolutions.hfdpch1.tddstyle.ducks;

import com.visionarysoftwaresolutions.hfdpch1.tddstyle.flight.FlyNoWay;
import com.visionarysoftwaresolutions.hfdpch1.tddstyle.quacks.Squeak;

public class RubberDuck extends Duck{
 
  public RubberDuck(){
    flyBehavior = new FlyNoWay();
    quackBehavior = new Squeak();
  }
 
  @Override
  public String display(){
    return "Burt's always invading my bathtime with Ernie...";
  }
}
TOP

Related Classes of com.visionarysoftwaresolutions.hfdpch1.tddstyle.ducks.RubberDuck

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.