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

Interface Car

Programs/Factory Method/Car.java:3–9  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1package factoryMethod;
2
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();
9}

Callers 3

buildCarMethodMethod · 0.65
buildCarMethodMethod · 0.65
buildCarMethodMethod · 0.65

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