01: package org.apache.ojb.broker;
02:
03: /**
04: *
05: * @author <a href="leandro@ibnetwork.com.br">Leandro Rodrigo Saad Cruz</a>
06: */
07: public class Category extends BaseQualifierImpl {
08: private String description;
09:
10: public Category() {
11: super ();
12: }
13:
14: public Category(int id) {
15: super (id);
16: }
17:
18: public String getDescription() {
19: return description;
20: }
21:
22: public void setDescription(String value) {
23: description = value;
24: }
25: }
|