| 1 | package factoryMethod; |
| 2 | |
| 3 | public 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 | } |
no outgoing calls
no test coverage detected