School Commit Init
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
package Model;
|
||||
|
||||
public interface IVehicle {
|
||||
String getBrand();
|
||||
void setBrand(String brand) throws IllegalArgumentException;
|
||||
String getColor();
|
||||
void setColor(String color) throws IllegalArgumentException;
|
||||
}
|
||||
Reference in New Issue
Block a user