Files
School/Anul 2/Semestrul 1/Metode avansate de programare/Lab 2/Model/IVehicle.java
T
2024-08-31 12:07:21 +03:00

9 lines
222 B
Java

package Model;
public interface IVehicle {
String getBrand();
void setBrand(String brand) throws IllegalArgumentException;
String getColor();
void setColor(String color) throws IllegalArgumentException;
}