KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > ojb > broker > TopicExt


1 package org.apache.ojb.broker;
2
3 /**
4  * Extension of {@link Topic}.
5  */

6 public class TopicExt extends Topic
7 {
8     private String JavaDoc description;
9
10     public String JavaDoc getDescription()
11     {
12         return description;
13     }
14
15     public void setDescription(String JavaDoc description)
16     {
17         this.description = description;
18     }
19 }
20
Popular Tags