MCPcopy Create free account
hub / github.com/Anchals24/Low-Level-Design / Sports

Class Sports

StrategyDesignPattern/WithStrategyPattern/Sports.java:6–10  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4import BehaviouralDesignPatterns.StrategyDesignPattern.WithStrategyPattern.Strategy.SportsDriveStrategy;
5
6public class Sports extends Vehicle{
7 Sports( ) {
8 super(new SportsDriveStrategy());
9 }
10}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected