package adapter; public class FishingBoatAdapter { private FishingBoat fishingBoat; public FishingBoatAdapter(FishingBoat fishingBoat) { this.fishingBoat = fishingBoat; } public String getValue() { return this.fishingBoat.getValue(); } }