Methods Summary |
---|
public java.lang.String | getDescr()Returns the product description.
return descr;
|
public java.lang.String | getId()Returns the product id.
return id;
|
public java.lang.String | getName()Returns the product name.
return name;
|
public float | getPrice()Returns the product price.
return price;
|
void | setDescr(java.lang.String descr)Sets the product description.
this.descr = descr;
|
void | setId(java.lang.String id)Sets the product id.
this.id = id;
|
void | setName(java.lang.String name)Sets the product name.
this.name = name;
|
void | setPrice(float price)Sets the product price.
this.price = price;
|