
// abstract product
public interface Car {
	void drive();
	void openDoors();
	void refuelTank();
}
