KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > contineo > core > text > analyze > AnalyseResult


1 /*
2  * Created on 21.03.2004
3  *
4  * To change the template for this generated file go to
5  * Window>Preferences>Java>Code Generation>Code and Comments
6  */

7 package org.contineo.core.text.analyze;
8
9 import java.util.Hashtable JavaDoc;
10 /**
11  * @author Michael Scholz
12  *
13  * To change the template for this generated type comment go to
14  * Window>Preferences>Java>Code Generation>Code and Comments
15  */

16 public class AnalyseResult {
17     
18     public AnalyseResult() {
19     }
20     
21     /**
22      * @uml.property name="wordCount"
23      */

24     private long wordCount = 0;
25
26     /**
27      * @uml.property name="wordTable"
28      * @uml.associationEnd
29      */

30     private Hashtable JavaDoc<String JavaDoc, WordEntry> wordTable = new Hashtable JavaDoc<String JavaDoc, WordEntry>();
31
32     /**
33      * @return
34      *
35      * @uml.property name="wordCount"
36      */

37     public long getWordCount() {
38         return wordCount;
39     }
40
41     /**
42      * @return
43      *
44      * @uml.property name="wordTable"
45      */

46     public Hashtable JavaDoc<String JavaDoc, WordEntry> getWordTable() {
47         return wordTable;
48     }
49
50     /**
51      * @param l
52      *
53      * @uml.property name="wordCount"
54      */

55     public void setWordCount(long l) {
56         wordCount = l;
57     }
58
59     /**
60      * @param hashtable
61      *
62      * @uml.property name="wordTable"
63      */

64     public void setWordTable(Hashtable JavaDoc<String JavaDoc, WordEntry> hashtable) {
65         wordTable = hashtable;
66     }
67
68 }
69
Popular Tags