moved to ex1 sub-directory

This commit is contained in:
2024-11-04 16:52:44 +01:00
parent 80b7f9e80d
commit 8caae17dd4
6 changed files with 10 additions and 10 deletions

View File

@@ -0,0 +1,20 @@
package lab8_builder.ex1;
public abstract class CarBuilder {
protected Car car;
protected abstract String getCarType();
public Car getCar() {
return car;
}
public void setCar(Car car) {
this.car = car;
}
public abstract void buildEngine();
public abstract void buildBreaks();
public abstract void buildSeats();
public abstract void buildWindows();
}