The following document contains the results of PMD's CPD 3.7.
| File | Line |
|---|---|
| net\smartlab\web\shop\Good.java | 99 |
| net\smartlab\web\shop\Service.java | 91 |
public long getId() {
return id;
}
/**
* @TODO documentation
*
* @param id The id to set.
*/
public void setId(long id) {
this.id = id;
}
/**
* @TODO documentation
*
* @return Returns the name.
*/
public String getName() {
return name;
}
/**
* @TODO documentation
*
* @param name The name to set.
*/
public void setName(String name) {
this.name = name;
}
/**
* @TODO documentation
*
* @return Returns the description.
*/
public String getDescription() {
return description;
}
/**
* @TODO documentation
*
* @param description The description to set.
*/
public void setDescription(String description) {
this.description = description;
}
/**
* @see net.smartlab.web.shop.Product#getDocuments()
*/
public Set getDocuments() {
return documents;
}
/**
* @see net.smartlab.web.shop.Product#setDocuments(java.util.Set)
*/
public void setDocuments(Set documents) {
this.documents = documents;
}
/**
* @see net.smartlab.web.shop.Product#getImages()
*/
public Set getImages() {
return images;
}
/**
* @see net.smartlab.web.shop.Product#setImages(java.util.Set)
*/
public void setImages(Set images) {
this.images = images;
}
/**
* @see net.smartlab.web.shop.Product#getMaximum()
*/
public int getMaximum() {
return maximum;
}
/**
* @see net.smartlab.web.shop.Product#setMaximum(int)
*/
public void setMaximum(int maximum) {
this.maximum = maximum;
}
/**
* @see net.smartlab.web.shop.Product#getMinimum()
*/
public int getMinimum() {
return minimum;
}
/**
* @see net.smartlab.web.shop.Product#setMinimum(int)
*/
public void setMinimum(int minimum) {
this.minimum = minimum;
}
/**
* @see net.smartlab.web.shop.Product#getPrice()
*/
public BigDecimal getPrice() {
return price;
}
/**
* @see net.smartlab.web.shop.Product#setPrice(float)
*/
public void setPrice(BigDecimal price) {
this.price = price;
}
/**
* @see net.smartlab.web.shop.Product#getTaxes()
*/
public BigDecimal getTaxes() {
return taxes;
}
/**
* @see net.smartlab.web.shop.Product#setTaxes(float)
*/
public void setTaxes(BigDecimal taxes) {
this.taxes = taxes;
}
/**
* @see net.smartlab.web.shop.Product#getValue()
*/
public BigDecimal getValue() {
return value;
}
/**
* @see net.smartlab.web.shop.Product#setValue(float)
*/
public void setValue(BigDecimal value) {
this.value = value;
}
/**
* @TODO documentation
* @return returns the <code>duration</code>.
*/
public long getDuration() { | |