Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class Car {
- private String brand;
- private String model;
- private int horsePower;
- public void setBrand(String newBrand) {
- brand = newBrand;
- }
- public String getBrand() {
- return brand;
- }
- public void setModel(String newModel) {
- model = newModel;
- }
- public void setHorsePower(int newHorsePower) {
- horsePower = newHorsePower;
- }
- public String getModel() {
- return model;
- }
- public int getHorsePower() {
- return horsePower;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement