Package com.visionarysoftwaresolutions.hfdpch1.tddstyle.ducks

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

package com.visionarysoftwaresolutions.hfdpch1.tddstyle.ducks;

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

public class ModelDuck extends Duck{

  public ModelDuck(){
    flyBehavior = new FlyNoWay();
    quackBehavior = new Quack();
  }
 
  @Override
  public String display(){
    return "I'm a model duck. A soulless golem.";
  }
}
TOP

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

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.