home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2004 May / DPPCPRO0504.ISO / May / Seatools / SeaTools.iso / tools / en / webhelp / webhelp.cab / XMLConsumer / FtsKeyInt.class (.txt) < prev    next >
Encoding:
Java Class File  |  2002-04-17  |  646 b   |  29 lines

  1. package XMLConsumer;
  2.  
  3. import java.util.Vector;
  4.  
  5. class FtsKeyInt {
  6.    private String m_sName;
  7.    private Vector m_vTopics;
  8.  
  9.    public FtsKeyInt(String var1) {
  10.       this.m_sName = var1;
  11.    }
  12.  
  13.    public Vector getTopics() {
  14.       return this.m_vTopics;
  15.    }
  16.  
  17.    public void addTopic(int var1) {
  18.       if (this.m_vTopics == null) {
  19.          this.m_vTopics = new Vector();
  20.       }
  21.  
  22.       this.m_vTopics.addElement(new Integer(var1));
  23.    }
  24.  
  25.    public String getName() {
  26.       return this.m_sName;
  27.    }
  28. }
  29.