code042.java
package pack01;
public class code042
{
private String name;
private double price;
private int count;
private String factory;
public String getName()
{
return this.name;
}
public void setName(String name)
{
this.name = name;
}
public double getPrice()
{
return this.price;
}
public void setPrice(double price)
{
this.price = price;
}
public int getCount()
{
return this.count;
}
public void setCount(int count)
{
this.count = count;
}
public String getFactory()
{
return this.factory;
}
public void setFactory(String factory)
{
this.factory = factory;
}
}