Package com.visionarysoftwaresolutions.hfdpch1.tddstyle.ducks

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

package com.visionarysoftwaresolutions.hfdpch1.tddstyle.ducks;

import com.visionarysoftwaresolutions.hfdpch1.tddstyle.flight.FlyWithWings;
import com.visionarysoftwaresolutions.hfdpch1.tddstyle.quacks.GingerQuack;

public class RedheadDuck extends Duck{
 
  public RedheadDuck(){
    flyBehavior = new FlyWithWings();
    quackBehavior = new GingerQuack();
  }
 
  @Override
  public String display(){
    return "I'm a Ginger duck. Be afraid.";
  }
}
TOP

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

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.