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

Interface CarFactory

Programs/Factory Method/CarFactory.java:3–5  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1package factoryMethod;
2
3public interface CarFactory {
4 public abstract Car buildCar(String model, String wheel, String engine);
5}

Callers 1

buildCarMethodMethod · 0.65

Implementers 3

SUVCarFactoryPrograms/Factory Method/SUVCarFactory.
SedanCarFactoryPrograms/Factory Method/SedanCarFactor
HatchbackCarFactoryPrograms/Factory Method/HatchbackCarFa

Calls

no outgoing calls

Tested by

no test coverage detected