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

Method SedanCar

Programs/Factory Method/SedanCar.java:8–12  ·  view source on GitHub ↗
(String model, String wheel, String engine)

Source from the content-addressed store, hash-verified

6 String engine;
7
8 SedanCar(String model, String wheel, String engine) {
9 this.model = model;
10 this.wheel = wheel;
11 this.engine = engine;
12 }
13
14 public String getModel() {
15 return model;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected