code042.java
1package pack01; 2 3public class code042 4{ 5 private String name; 6 private double price; 7 private int count; 8 private String factory; 9 10 public String getName() 11 { 12 return this.name; 13 } 14 15 public void setName(String name) 16 { 17 this.name = name; 18 } 19 20 public double getPrice() 21 { 22 return this.price; 23 } 24 25 public void setPrice(double price) 26 { 27 this.price = price; 28 } 29 30 public int getCount() 31 { 32 return this.count; 33 } 34 35 public void setCount(int count) 36 { 37 this.count = count; 38 } 39 40 public String getFactory() 41 { 42 return this.factory; 43 } 44 45 public void setFactory(String factory) 46 { 47 this.factory = factory; 48 } 49 50 51} 52