home *** CD-ROM | disk | FTP | other *** search
- package XMLConsumer;
-
- import java.util.Vector;
-
- class FtsKeyInt {
- private String m_sName;
- private Vector m_vTopics;
-
- public FtsKeyInt(String var1) {
- this.m_sName = var1;
- }
-
- public Vector getTopics() {
- return this.m_vTopics;
- }
-
- public void addTopic(int var1) {
- if (this.m_vTopics == null) {
- this.m_vTopics = new Vector();
- }
-
- this.m_vTopics.addElement(new Integer(var1));
- }
-
- public String getName() {
- return this.m_sName;
- }
- }
-