Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package productorder;
- public class Products {
- private String name;
- private double price;
- public Products(String name_of, double price_of)
- {
- name = name_of;
- price = price_of;
- }
- public String getName()
- {
- return name;
- }
- public double getPrice()
- {
- return price;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement