MCPcopy Create free account
hub / github.com/PrajaktaSathe/Java / setWheel

Method setWheel

Programs/Factory Method/Car.java:5–5  ·  view source on GitHub ↗
(String wheel)

Source from the content-addressed store, hash-verified

3public interface Car {
4 public String getModel();
5 public void setWheel(String wheel);
6 public String getWheel();
7 public void setEngine(String engine);
8 public String getEngine();

Callers

nothing calls this directly

Implementers 3

SUVCarPrograms/Factory Method/SUVCar.java
HatchbackCarPrograms/Factory Method/HatchbackCar.j
SedanCarPrograms/Factory Method/SedanCar.java

Calls

no outgoing calls

Tested by

no test coverage detected