Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class FlashLight {
- private String model;
- private double price;
- public FlashLight(String model, double price) {
- this.model = model;
- this.price = price;
- }
- public String getModel() {
- return model;
- }
- public void setModel(String model) {
- this.model = model;
- }
- public double getPrice() {
- return price;
- }
- public void setPrice(double price) {
- this.price = price;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement