source: trunk/gsdl/packages/kea/kea-3.0/doc/KEAModelBuilder.html@ 8815

Last change on this file since 8815 was 8815, checked in by mdewsnip, 19 years ago

Kea 3.0, as downloaded from http://www.nzdl.org/kea but with CSTR_abstracts_test, CSTR_abstracts_train, Chinese_test, and Chinese_train directories removed.

  • Property svn:keywords set to Author Date Id Revision
File size: 29.8 KB
Line 
1<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN""http://www.w3.org/TR/REC-html40/loose.dtd">
2<!--NewPage-->
3<HTML>
4<HEAD>
5<!-- Generated by javadoc on Fri Mar 19 17:50:49 NZDT 2004 -->
6<TITLE>
7KEAModelBuilder
8</TITLE>
9<META NAME="keywords" CONTENT="KEAModelBuilder,KEAModelBuilder class">
10<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
11</HEAD>
12<SCRIPT>
13function asd()
14{
15parent.document.title="KEAModelBuilder";
16}
17</SCRIPT>
18<BODY BGCOLOR="white" onload="asd();">
19
20<!-- ========== START OF NAVBAR ========== -->
21<A NAME="navbar_top"><!-- --></A>
22<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0">
23<TR>
24<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
25<A NAME="navbar_top_firstrow"><!-- --></A>
26<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3">
27 <TR ALIGN="center" VALIGN="top">
28 <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Package</FONT>&nbsp;</TD>
29&nbsp;</TD>
30 <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD>
31 <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
32 <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>
33 <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD>
34 <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>
35 </TR>
36</TABLE>
37</TD>
38<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
39</EM>
40</TD>
41</TR>
42
43<TR>
44<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
45&nbsp;<A HREF="KEAKeyphraseExtractor.html"><B>PREV CLASS</B></A>&nbsp;
46&nbsp;<A HREF="KEAPhraseFilter.html"><B>NEXT CLASS</B></A></FONT></TD>
47<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
48 <A HREF="index.html" TARGET="_top"><B>FRAMES</B></A> &nbsp;
49&nbsp;<A HREF="KEAModelBuilder.html" TARGET="_top"><B>NO FRAMES</B></A> &nbsp;
50&nbsp;
51<SCRIPT>
52 <!--
53 if(window==top) {
54 document.writeln('<A HREF="allclasses-noframe.html" TARGET=""><B>All Classes</B></A>');
55 }
56 //-->
57</SCRIPT>
58<NOSCRIPT>
59<A HREF="allclasses-noframe.html" TARGET=""><B>All Classes</B></A>
60</NOSCRIPT>
61</FONT></TD>
62</TR>
63<TR>
64<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
65 SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;FIELD&nbsp;|&nbsp;<A HREF="#constructor_summary">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD>
66<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
67DETAIL:&nbsp;FIELD&nbsp;|&nbsp;<A HREF="#constructor_detail">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD>
68</TR>
69</TABLE>
70<!-- =========== END OF NAVBAR =========== -->
71
72<HR>
73<!-- ======== START OF CLASS DATA ======== -->
74<H2>
75Class KEAModelBuilder</H2>
76<PRE>
77java.lang.Object
78 |
79 +--<B>KEAModelBuilder</B>
80</PRE>
81<DL>
82<DT><B>All Implemented Interfaces:</B> <DD>weka.core.OptionHandler</DD>
83</DL>
84<HR>
85<DL>
86<DT>public class <B>KEAModelBuilder</B><DT>extends java.lang.Object<DT>implements weka.core.OptionHandler</DL>
87
88<P>
89Builds a keyphrase extraction model from the documents in a given
90 directory. Assumes that the file names for the documents end with
91 ".txt". Assumes that files containing corresponding
92 author-assigned keyphrases end with ".key". Optionally an encoding
93 for the documents/keyphrases can be defined (e.g. for Chinese
94 text).
95
96 Valid options are:<p>
97
98 -l "directory name"<br>
99 Specifies name of directory.<p>
100
101 -m "model name"<br>
102 Specifies name of model.<p>
103
104 -e "encoding"<br>
105 Specifies encoding.<p>
106
107 -d<br>
108 Turns debugging mode on.<p>
109
110 -k<br>
111 Use keyphrase frequency statistic.<p>
112
113 -p<br>
114 Disallow internal periods.<p>
115
116 -x "length"<br>
117 Sets maximum phrase length (default: 3).<p>
118
119 -y "length"<br>
120 Sets minimum phrase length (default: 1).<p>
121
122 -o "number"<br>
123 The minimum number of times a phrase needs to occur (default: 2). <p>
124
125 -s "name of class implementing list of stop words"<br>
126 Sets list of stop words to used (default: StopwordsEnglish).<p>
127
128 -t "name of class implementing stemmer"<br>
129 Sets stemmer to use (default: IteratedLovinsStemmer). <p>
130
131 -n<br>
132 Do not check for proper nouns. <p>
133<P>
134
135<P>
136<HR>
137
138<P>
139<!-- ======== NESTED CLASS SUMMARY ======== -->
140
141
142<!-- =========== FIELD SUMMARY =========== -->
143
144
145<!-- ======== CONSTRUCTOR SUMMARY ======== -->
146
147<A NAME="constructor_summary"><!-- --></A>
148<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%">
149<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
150<TD COLSPAN=2><FONT SIZE="+2">
151<B>Constructor Summary</B></FONT></TD>
152</TR>
153<TR BGCOLOR="white" CLASS="TableRowColor">
154<TD><CODE><B><A HREF="KEAModelBuilder.html#KEAModelBuilder()">KEAModelBuilder</A></B>()</CODE>
155
156<BR>
157&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD>
158</TR>
159</TABLE>
160&nbsp;
161<!-- ========== METHOD SUMMARY =========== -->
162
163<A NAME="method_summary"><!-- --></A>
164<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%">
165<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
166<TD COLSPAN=2><FONT SIZE="+2">
167<B>Method Summary</B></FONT></TD>
168</TR>
169<TR BGCOLOR="white" CLASS="TableRowColor">
170<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
171<CODE>&nbsp;void</CODE></FONT></TD>
172<TD><CODE><B><A HREF="KEAModelBuilder.html#buildModel(java.util.Hashtable)">buildModel</A></B>(java.util.Hashtable&nbsp;stems)</CODE>
173
174<BR>
175&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Builds the model from the files</TD>
176</TR>
177<TR BGCOLOR="white" CLASS="TableRowColor">
178<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
179<CODE>&nbsp;java.util.Hashtable</CODE></FONT></TD>
180<TD><CODE><B><A HREF="KEAModelBuilder.html#collectStems()">collectStems</A></B>()</CODE>
181
182<BR>
183&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Collects the stems of the file names.</TD>
184</TR>
185<TR BGCOLOR="white" CLASS="TableRowColor">
186<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
187<CODE>&nbsp;boolean</CODE></FONT></TD>
188<TD><CODE><B><A HREF="KEAModelBuilder.html#getCheckForProperNouns()">getCheckForProperNouns</A></B>()</CODE>
189
190<BR>
191&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Get the M_CheckProperNouns value.</TD>
192</TR>
193<TR BGCOLOR="white" CLASS="TableRowColor">
194<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
195<CODE>&nbsp;boolean</CODE></FONT></TD>
196<TD><CODE><B><A HREF="KEAModelBuilder.html#getDebug()">getDebug</A></B>()</CODE>
197
198<BR>
199&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Get the value of debug.</TD>
200</TR>
201<TR BGCOLOR="white" CLASS="TableRowColor">
202<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
203<CODE>&nbsp;java.lang.String</CODE></FONT></TD>
204<TD><CODE><B><A HREF="KEAModelBuilder.html#getDirName()">getDirName</A></B>()</CODE>
205
206<BR>
207&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Get the value of dirName.</TD>
208</TR>
209<TR BGCOLOR="white" CLASS="TableRowColor">
210<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
211<CODE>&nbsp;boolean</CODE></FONT></TD>
212<TD><CODE><B><A HREF="KEAModelBuilder.html#getDisallowIPeriods()">getDisallowIPeriods</A></B>()</CODE>
213
214<BR>
215&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Get the value of disallowIPeriods.</TD>
216</TR>
217<TR BGCOLOR="white" CLASS="TableRowColor">
218<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
219<CODE>&nbsp;java.lang.String</CODE></FONT></TD>
220<TD><CODE><B><A HREF="KEAModelBuilder.html#getEncoding()">getEncoding</A></B>()</CODE>
221
222<BR>
223&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Get the value of encoding.</TD>
224</TR>
225<TR BGCOLOR="white" CLASS="TableRowColor">
226<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
227<CODE>&nbsp;int</CODE></FONT></TD>
228<TD><CODE><B><A HREF="KEAModelBuilder.html#getMaxPhraseLength()">getMaxPhraseLength</A></B>()</CODE>
229
230<BR>
231&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Get the value of MaxPhraseLength.</TD>
232</TR>
233<TR BGCOLOR="white" CLASS="TableRowColor">
234<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
235<CODE>&nbsp;int</CODE></FONT></TD>
236<TD><CODE><B><A HREF="KEAModelBuilder.html#getMinNumOccur()">getMinNumOccur</A></B>()</CODE>
237
238<BR>
239&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Get the value of MinNumOccur.</TD>
240</TR>
241<TR BGCOLOR="white" CLASS="TableRowColor">
242<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
243<CODE>&nbsp;int</CODE></FONT></TD>
244<TD><CODE><B><A HREF="KEAModelBuilder.html#getMinPhraseLength()">getMinPhraseLength</A></B>()</CODE>
245
246<BR>
247&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Get the value of MinPhraseLength.</TD>
248</TR>
249<TR BGCOLOR="white" CLASS="TableRowColor">
250<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
251<CODE>&nbsp;java.lang.String</CODE></FONT></TD>
252<TD><CODE><B><A HREF="KEAModelBuilder.html#getModelName()">getModelName</A></B>()</CODE>
253
254<BR>
255&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Get the value of modelName.</TD>
256</TR>
257<TR BGCOLOR="white" CLASS="TableRowColor">
258<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
259<CODE>&nbsp;java.lang.String[]</CODE></FONT></TD>
260<TD><CODE><B><A HREF="KEAModelBuilder.html#getOptions()">getOptions</A></B>()</CODE>
261
262<BR>
263&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Gets the current option settings.</TD>
264</TR>
265<TR BGCOLOR="white" CLASS="TableRowColor">
266<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
267<CODE>&nbsp;Stemmer</CODE></FONT></TD>
268<TD><CODE><B><A HREF="KEAModelBuilder.html#getStemmer()">getStemmer</A></B>()</CODE>
269
270<BR>
271&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Get the Stemmer value.</TD>
272</TR>
273<TR BGCOLOR="white" CLASS="TableRowColor">
274<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
275<CODE>&nbsp;Stopwords</CODE></FONT></TD>
276<TD><CODE><B><A HREF="KEAModelBuilder.html#getStopwords()">getStopwords</A></B>()</CODE>
277
278<BR>
279&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Get the M_Stopwords value.</TD>
280</TR>
281<TR BGCOLOR="white" CLASS="TableRowColor">
282<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
283<CODE>&nbsp;boolean</CODE></FONT></TD>
284<TD><CODE><B><A HREF="KEAModelBuilder.html#getUseKFrequency()">getUseKFrequency</A></B>()</CODE>
285
286<BR>
287&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Get the value of useKFrequency.</TD>
288</TR>
289<TR BGCOLOR="white" CLASS="TableRowColor">
290<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
291<CODE>&nbsp;java.util.Enumeration</CODE></FONT></TD>
292<TD><CODE><B><A HREF="KEAModelBuilder.html#listOptions()">listOptions</A></B>()</CODE>
293
294<BR>
295&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns an enumeration describing the available options.</TD>
296</TR>
297<TR BGCOLOR="white" CLASS="TableRowColor">
298<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
299<CODE>static&nbsp;void</CODE></FONT></TD>
300<TD><CODE><B><A HREF="KEAModelBuilder.html#main(java.lang.String[])">main</A></B>(java.lang.String[]&nbsp;ops)</CODE>
301
302<BR>
303&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;The main method.</TD>
304</TR>
305<TR BGCOLOR="white" CLASS="TableRowColor">
306<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
307<CODE>&nbsp;void</CODE></FONT></TD>
308<TD><CODE><B><A HREF="KEAModelBuilder.html#saveModel()">saveModel</A></B>()</CODE>
309
310<BR>
311&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Saves the extraction model to the file.</TD>
312</TR>
313<TR BGCOLOR="white" CLASS="TableRowColor">
314<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
315<CODE>&nbsp;void</CODE></FONT></TD>
316<TD><CODE><B><A HREF="KEAModelBuilder.html#setCheckForProperNouns(boolean)">setCheckForProperNouns</A></B>(boolean&nbsp;newM_CheckProperNouns)</CODE>
317
318<BR>
319&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Set the M_CheckProperNouns value.</TD>
320</TR>
321<TR BGCOLOR="white" CLASS="TableRowColor">
322<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
323<CODE>&nbsp;void</CODE></FONT></TD>
324<TD><CODE><B><A HREF="KEAModelBuilder.html#setDebug(boolean)">setDebug</A></B>(boolean&nbsp;newdebug)</CODE>
325
326<BR>
327&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Set the value of debug.</TD>
328</TR>
329<TR BGCOLOR="white" CLASS="TableRowColor">
330<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
331<CODE>&nbsp;void</CODE></FONT></TD>
332<TD><CODE><B><A HREF="KEAModelBuilder.html#setDirName(java.lang.String)">setDirName</A></B>(java.lang.String&nbsp;newdirName)</CODE>
333
334<BR>
335&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Set the value of dirName.</TD>
336</TR>
337<TR BGCOLOR="white" CLASS="TableRowColor">
338<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
339<CODE>&nbsp;void</CODE></FONT></TD>
340<TD><CODE><B><A HREF="KEAModelBuilder.html#setDisallowIPeriods(boolean)">setDisallowIPeriods</A></B>(boolean&nbsp;newdisallowIPeriods)</CODE>
341
342<BR>
343&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Set the value of disallowIPeriods.</TD>
344</TR>
345<TR BGCOLOR="white" CLASS="TableRowColor">
346<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
347<CODE>&nbsp;void</CODE></FONT></TD>
348<TD><CODE><B><A HREF="KEAModelBuilder.html#setEncoding(java.lang.String)">setEncoding</A></B>(java.lang.String&nbsp;newencoding)</CODE>
349
350<BR>
351&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Set the value of encoding.</TD>
352</TR>
353<TR BGCOLOR="white" CLASS="TableRowColor">
354<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
355<CODE>&nbsp;void</CODE></FONT></TD>
356<TD><CODE><B><A HREF="KEAModelBuilder.html#setMaxPhraseLength(int)">setMaxPhraseLength</A></B>(int&nbsp;newMaxPhraseLength)</CODE>
357
358<BR>
359&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Set the value of MaxPhraseLength.</TD>
360</TR>
361<TR BGCOLOR="white" CLASS="TableRowColor">
362<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
363<CODE>&nbsp;void</CODE></FONT></TD>
364<TD><CODE><B><A HREF="KEAModelBuilder.html#setMinNumOccur(int)">setMinNumOccur</A></B>(int&nbsp;newMinNumOccur)</CODE>
365
366<BR>
367&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Set the value of MinNumOccur.</TD>
368</TR>
369<TR BGCOLOR="white" CLASS="TableRowColor">
370<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
371<CODE>&nbsp;void</CODE></FONT></TD>
372<TD><CODE><B><A HREF="KEAModelBuilder.html#setMinPhraseLength(int)">setMinPhraseLength</A></B>(int&nbsp;newMinPhraseLength)</CODE>
373
374<BR>
375&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Set the value of MinPhraseLength.</TD>
376</TR>
377<TR BGCOLOR="white" CLASS="TableRowColor">
378<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
379<CODE>&nbsp;void</CODE></FONT></TD>
380<TD><CODE><B><A HREF="KEAModelBuilder.html#setModelName(java.lang.String)">setModelName</A></B>(java.lang.String&nbsp;newmodelName)</CODE>
381
382<BR>
383&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Set the value of modelName.</TD>
384</TR>
385<TR BGCOLOR="white" CLASS="TableRowColor">
386<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
387<CODE>&nbsp;void</CODE></FONT></TD>
388<TD><CODE><B><A HREF="KEAModelBuilder.html#setOptions(java.lang.String[])">setOptions</A></B>(java.lang.String[]&nbsp;options)</CODE>
389
390<BR>
391&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Parses a given list of options controlling the behaviour of this object.</TD>
392</TR>
393<TR BGCOLOR="white" CLASS="TableRowColor">
394<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
395<CODE>&nbsp;void</CODE></FONT></TD>
396<TD><CODE><B><A HREF="KEAModelBuilder.html#setStemmer(Stemmer)">setStemmer</A></B>(Stemmer&nbsp;newStemmer)</CODE>
397
398<BR>
399&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Set the Stemmer value.</TD>
400</TR>
401<TR BGCOLOR="white" CLASS="TableRowColor">
402<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
403<CODE>&nbsp;void</CODE></FONT></TD>
404<TD><CODE><B><A HREF="KEAModelBuilder.html#setStopwords(Stopwords)">setStopwords</A></B>(Stopwords&nbsp;newM_Stopwords)</CODE>
405
406<BR>
407&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Set the M_Stopwords value.</TD>
408</TR>
409<TR BGCOLOR="white" CLASS="TableRowColor">
410<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
411<CODE>&nbsp;void</CODE></FONT></TD>
412<TD><CODE><B><A HREF="KEAModelBuilder.html#setUseKFrequency(boolean)">setUseKFrequency</A></B>(boolean&nbsp;newuseKFrequency)</CODE>
413
414<BR>
415&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Set the value of useKFrequency.</TD>
416</TR>
417</TABLE>
418&nbsp;<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A>
419<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%">
420<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
421<TD><B>Methods inherited from class java.lang.Object</B></TD>
422</TR>
423<TR BGCOLOR="white" CLASS="TableRowColor">
424<TD><CODE>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</CODE></TD>
425</TR>
426</TABLE>
427&nbsp;
428<P>
429
430<!-- ============ FIELD DETAIL =========== -->
431
432
433<!-- ========= CONSTRUCTOR DETAIL ======== -->
434
435<A NAME="constructor_detail"><!-- --></A>
436<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%">
437<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
438<TD COLSPAN=1><FONT SIZE="+2">
439<B>Constructor Detail</B></FONT></TD>
440</TR>
441</TABLE>
442
443<A NAME="KEAModelBuilder()"><!-- --></A><H3>
444KEAModelBuilder</H3>
445<PRE>
446public <B>KEAModelBuilder</B>()</PRE>
447<DL>
448</DL>
449
450<!-- ============ METHOD DETAIL ========== -->
451
452<A NAME="method_detail"><!-- --></A>
453<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%">
454<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
455<TD COLSPAN=1><FONT SIZE="+2">
456<B>Method Detail</B></FONT></TD>
457</TR>
458</TABLE>
459
460<A NAME="getCheckForProperNouns()"><!-- --></A><H3>
461getCheckForProperNouns</H3>
462<PRE>
463public boolean <B>getCheckForProperNouns</B>()</PRE>
464<DL>
465<DD>Get the M_CheckProperNouns value.
466<P>
467<DD><DL>
468</DL>
469</DD>
470<DD><DL>
471
472<DT><B>Returns:</B><DD>the M_CheckProperNouns value.</DL>
473</DD>
474</DL>
475<HR>
476
477<A NAME="setCheckForProperNouns(boolean)"><!-- --></A><H3>
478setCheckForProperNouns</H3>
479<PRE>
480public void <B>setCheckForProperNouns</B>(boolean&nbsp;newM_CheckProperNouns)</PRE>
481<DL>
482<DD>Set the M_CheckProperNouns value.
483<P>
484<DD><DL>
485</DL>
486</DD>
487<DD><DL>
488<DT><B>Parameters:</B><DD><CODE>newM_CheckProperNouns</CODE> - The new M_CheckProperNouns value.</DL>
489</DD>
490</DL>
491<HR>
492
493<A NAME="getStopwords()"><!-- --></A><H3>
494getStopwords</H3>
495<PRE>
496public Stopwords <B>getStopwords</B>()</PRE>
497<DL>
498<DD>Get the M_Stopwords value.
499<P>
500<DD><DL>
501</DL>
502</DD>
503<DD><DL>
504
505<DT><B>Returns:</B><DD>the M_Stopwords value.</DL>
506</DD>
507</DL>
508<HR>
509
510<A NAME="setStopwords(Stopwords)"><!-- --></A><H3>
511setStopwords</H3>
512<PRE>
513public void <B>setStopwords</B>(Stopwords&nbsp;newM_Stopwords)</PRE>
514<DL>
515<DD>Set the M_Stopwords value.
516<P>
517<DD><DL>
518</DL>
519</DD>
520<DD><DL>
521<DT><B>Parameters:</B><DD><CODE>newM_Stopwords</CODE> - The new M_Stopwords value.</DL>
522</DD>
523</DL>
524<HR>
525
526<A NAME="getStemmer()"><!-- --></A><H3>
527getStemmer</H3>
528<PRE>
529public Stemmer <B>getStemmer</B>()</PRE>
530<DL>
531<DD>Get the Stemmer value.
532<P>
533<DD><DL>
534</DL>
535</DD>
536<DD><DL>
537
538<DT><B>Returns:</B><DD>the Stemmer value.</DL>
539</DD>
540</DL>
541<HR>
542
543<A NAME="setStemmer(Stemmer)"><!-- --></A><H3>
544setStemmer</H3>
545<PRE>
546public void <B>setStemmer</B>(Stemmer&nbsp;newStemmer)</PRE>
547<DL>
548<DD>Set the Stemmer value.
549<P>
550<DD><DL>
551</DL>
552</DD>
553<DD><DL>
554<DT><B>Parameters:</B><DD><CODE>newStemmer</CODE> - The new Stemmer value.</DL>
555</DD>
556</DL>
557<HR>
558
559<A NAME="getMinNumOccur()"><!-- --></A><H3>
560getMinNumOccur</H3>
561<PRE>
562public int <B>getMinNumOccur</B>()</PRE>
563<DL>
564<DD>Get the value of MinNumOccur.
565<P>
566<DD><DL>
567</DL>
568</DD>
569<DD><DL>
570
571<DT><B>Returns:</B><DD>Value of MinNumOccur.</DL>
572</DD>
573</DL>
574<HR>
575
576<A NAME="setMinNumOccur(int)"><!-- --></A><H3>
577setMinNumOccur</H3>
578<PRE>
579public void <B>setMinNumOccur</B>(int&nbsp;newMinNumOccur)</PRE>
580<DL>
581<DD>Set the value of MinNumOccur.
582<P>
583<DD><DL>
584</DL>
585</DD>
586<DD><DL>
587<DT><B>Parameters:</B><DD><CODE>newMinNumOccur</CODE> - Value to assign to MinNumOccur.</DL>
588</DD>
589</DL>
590<HR>
591
592<A NAME="getMaxPhraseLength()"><!-- --></A><H3>
593getMaxPhraseLength</H3>
594<PRE>
595public int <B>getMaxPhraseLength</B>()</PRE>
596<DL>
597<DD>Get the value of MaxPhraseLength.
598<P>
599<DD><DL>
600</DL>
601</DD>
602<DD><DL>
603
604<DT><B>Returns:</B><DD>Value of MaxPhraseLength.</DL>
605</DD>
606</DL>
607<HR>
608
609<A NAME="setMaxPhraseLength(int)"><!-- --></A><H3>
610setMaxPhraseLength</H3>
611<PRE>
612public void <B>setMaxPhraseLength</B>(int&nbsp;newMaxPhraseLength)</PRE>
613<DL>
614<DD>Set the value of MaxPhraseLength.
615<P>
616<DD><DL>
617</DL>
618</DD>
619<DD><DL>
620<DT><B>Parameters:</B><DD><CODE>newMaxPhraseLength</CODE> - Value to assign to MaxPhraseLength.</DL>
621</DD>
622</DL>
623<HR>
624
625<A NAME="getMinPhraseLength()"><!-- --></A><H3>
626getMinPhraseLength</H3>
627<PRE>
628public int <B>getMinPhraseLength</B>()</PRE>
629<DL>
630<DD>Get the value of MinPhraseLength.
631<P>
632<DD><DL>
633</DL>
634</DD>
635<DD><DL>
636
637<DT><B>Returns:</B><DD>Value of MinPhraseLength.</DL>
638</DD>
639</DL>
640<HR>
641
642<A NAME="setMinPhraseLength(int)"><!-- --></A><H3>
643setMinPhraseLength</H3>
644<PRE>
645public void <B>setMinPhraseLength</B>(int&nbsp;newMinPhraseLength)</PRE>
646<DL>
647<DD>Set the value of MinPhraseLength.
648<P>
649<DD><DL>
650</DL>
651</DD>
652<DD><DL>
653<DT><B>Parameters:</B><DD><CODE>newMinPhraseLength</CODE> - Value to assign to MinPhraseLength.</DL>
654</DD>
655</DL>
656<HR>
657
658<A NAME="getDisallowIPeriods()"><!-- --></A><H3>
659getDisallowIPeriods</H3>
660<PRE>
661public boolean <B>getDisallowIPeriods</B>()</PRE>
662<DL>
663<DD>Get the value of disallowIPeriods.
664<P>
665<DD><DL>
666</DL>
667</DD>
668<DD><DL>
669
670<DT><B>Returns:</B><DD>Value of disallowIPeriods.</DL>
671</DD>
672</DL>
673<HR>
674
675<A NAME="setDisallowIPeriods(boolean)"><!-- --></A><H3>
676setDisallowIPeriods</H3>
677<PRE>
678public void <B>setDisallowIPeriods</B>(boolean&nbsp;newdisallowIPeriods)</PRE>
679<DL>
680<DD>Set the value of disallowIPeriods.
681<P>
682<DD><DL>
683</DL>
684</DD>
685<DD><DL>
686<DT><B>Parameters:</B><DD><CODE>newdisallowIPeriods</CODE> - Value to assign to disallowIPeriods.</DL>
687</DD>
688</DL>
689<HR>
690
691<A NAME="getUseKFrequency()"><!-- --></A><H3>
692getUseKFrequency</H3>
693<PRE>
694public boolean <B>getUseKFrequency</B>()</PRE>
695<DL>
696<DD>Get the value of useKFrequency.
697<P>
698<DD><DL>
699</DL>
700</DD>
701<DD><DL>
702
703<DT><B>Returns:</B><DD>Value of useKFrequency.</DL>
704</DD>
705</DL>
706<HR>
707
708<A NAME="setUseKFrequency(boolean)"><!-- --></A><H3>
709setUseKFrequency</H3>
710<PRE>
711public void <B>setUseKFrequency</B>(boolean&nbsp;newuseKFrequency)</PRE>
712<DL>
713<DD>Set the value of useKFrequency.
714<P>
715<DD><DL>
716</DL>
717</DD>
718<DD><DL>
719<DT><B>Parameters:</B><DD><CODE>newuseKFrequency</CODE> - Value to assign to useKFrequency.</DL>
720</DD>
721</DL>
722<HR>
723
724<A NAME="getDebug()"><!-- --></A><H3>
725getDebug</H3>
726<PRE>
727public boolean <B>getDebug</B>()</PRE>
728<DL>
729<DD>Get the value of debug.
730<P>
731<DD><DL>
732</DL>
733</DD>
734<DD><DL>
735
736<DT><B>Returns:</B><DD>Value of debug.</DL>
737</DD>
738</DL>
739<HR>
740
741<A NAME="setDebug(boolean)"><!-- --></A><H3>
742setDebug</H3>
743<PRE>
744public void <B>setDebug</B>(boolean&nbsp;newdebug)</PRE>
745<DL>
746<DD>Set the value of debug.
747<P>
748<DD><DL>
749</DL>
750</DD>
751<DD><DL>
752<DT><B>Parameters:</B><DD><CODE>newdebug</CODE> - Value to assign to debug.</DL>
753</DD>
754</DL>
755<HR>
756
757<A NAME="getEncoding()"><!-- --></A><H3>
758getEncoding</H3>
759<PRE>
760public java.lang.String <B>getEncoding</B>()</PRE>
761<DL>
762<DD>Get the value of encoding.
763<P>
764<DD><DL>
765</DL>
766</DD>
767<DD><DL>
768
769<DT><B>Returns:</B><DD>Value of encoding.</DL>
770</DD>
771</DL>
772<HR>
773
774<A NAME="setEncoding(java.lang.String)"><!-- --></A><H3>
775setEncoding</H3>
776<PRE>
777public void <B>setEncoding</B>(java.lang.String&nbsp;newencoding)</PRE>
778<DL>
779<DD>Set the value of encoding.
780<P>
781<DD><DL>
782</DL>
783</DD>
784<DD><DL>
785<DT><B>Parameters:</B><DD><CODE>newencoding</CODE> - Value to assign to encoding.</DL>
786</DD>
787</DL>
788<HR>
789
790<A NAME="getModelName()"><!-- --></A><H3>
791getModelName</H3>
792<PRE>
793public java.lang.String <B>getModelName</B>()</PRE>
794<DL>
795<DD>Get the value of modelName.
796<P>
797<DD><DL>
798</DL>
799</DD>
800<DD><DL>
801
802<DT><B>Returns:</B><DD>Value of modelName.</DL>
803</DD>
804</DL>
805<HR>
806
807<A NAME="setModelName(java.lang.String)"><!-- --></A><H3>
808setModelName</H3>
809<PRE>
810public void <B>setModelName</B>(java.lang.String&nbsp;newmodelName)</PRE>
811<DL>
812<DD>Set the value of modelName.
813<P>
814<DD><DL>
815</DL>
816</DD>
817<DD><DL>
818<DT><B>Parameters:</B><DD><CODE>newmodelName</CODE> - Value to assign to modelName.</DL>
819</DD>
820</DL>
821<HR>
822
823<A NAME="getDirName()"><!-- --></A><H3>
824getDirName</H3>
825<PRE>
826public java.lang.String <B>getDirName</B>()</PRE>
827<DL>
828<DD>Get the value of dirName.
829<P>
830<DD><DL>
831</DL>
832</DD>
833<DD><DL>
834
835<DT><B>Returns:</B><DD>Value of dirName.</DL>
836</DD>
837</DL>
838<HR>
839
840<A NAME="setDirName(java.lang.String)"><!-- --></A><H3>
841setDirName</H3>
842<PRE>
843public void <B>setDirName</B>(java.lang.String&nbsp;newdirName)</PRE>
844<DL>
845<DD>Set the value of dirName.
846<P>
847<DD><DL>
848</DL>
849</DD>
850<DD><DL>
851<DT><B>Parameters:</B><DD><CODE>newdirName</CODE> - Value to assign to dirName.</DL>
852</DD>
853</DL>
854<HR>
855
856<A NAME="setOptions(java.lang.String[])"><!-- --></A><H3>
857setOptions</H3>
858<PRE>
859public void <B>setOptions</B>(java.lang.String[]&nbsp;options)
860 throws java.lang.Exception</PRE>
861<DL>
862<DD>Parses a given list of options controlling the behaviour of this object.
863 Valid options are:<p>
864
865 -l "directory name" <br>
866 Specifies name of directory.<p>
867
868 -m "model name" <br>
869 Specifies name of model.<p>
870
871 -e "encoding" <br>
872 Specifies encoding.<p>
873
874 -d<br>
875 Turns debugging mode on.<p>
876
877 -k<br>
878 Use keyphrase frequency statistic.<p>
879
880 -p<br>
881 Disallow internal periods. <p>
882
883 -x "length"<br>
884 Sets maximum phrase length (default: 3).<p>
885
886 -y "length"<br>
887 Sets minimum phrase length (default: 3).<p>
888
889 -o "number"<br>
890 The minimum number of times a phrase needs to occur (default: 2). <p>
891
892 -s "name of class implementing list of stop words"<br>
893 Sets list of stop words to used (default: StopwordsEnglish).<p>
894
895 -t "name of class implementing stemmer"<br>
896 Sets stemmer to use (default: IteratedLovinsStemmer). <p>
897
898 -n<br>
899 Do not check for proper nouns. <p>
900<P>
901<DD><DL>
902<DT><B>Specified by:</B><DD><CODE>setOptions</CODE> in interface <CODE>weka.core.OptionHandler</CODE></DL>
903</DD>
904<DD><DL>
905<DT><B>Parameters:</B><DD><CODE>options</CODE> - the list of options as an array of strings
906<DT><B>Throws:</B>
907<DD><CODE>java.lang.Exception</CODE> - if an option is not supported</DL>
908</DD>
909</DL>
910<HR>
911
912<A NAME="getOptions()"><!-- --></A><H3>
913getOptions</H3>
914<PRE>
915public java.lang.String[] <B>getOptions</B>()</PRE>
916<DL>
917<DD>Gets the current option settings.
918<P>
919<DD><DL>
920<DT><B>Specified by:</B><DD><CODE>getOptions</CODE> in interface <CODE>weka.core.OptionHandler</CODE></DL>
921</DD>
922<DD><DL>
923
924<DT><B>Returns:</B><DD>an array of strings suitable for passing to setOptions</DL>
925</DD>
926</DL>
927<HR>
928
929<A NAME="listOptions()"><!-- --></A><H3>
930listOptions</H3>
931<PRE>
932public java.util.Enumeration <B>listOptions</B>()</PRE>
933<DL>
934<DD>Returns an enumeration describing the available options.
935<P>
936<DD><DL>
937<DT><B>Specified by:</B><DD><CODE>listOptions</CODE> in interface <CODE>weka.core.OptionHandler</CODE></DL>
938</DD>
939<DD><DL>
940
941<DT><B>Returns:</B><DD>an enumeration of all the available options</DL>
942</DD>
943</DL>
944<HR>
945
946<A NAME="collectStems()"><!-- --></A><H3>
947collectStems</H3>
948<PRE>
949public java.util.Hashtable <B>collectStems</B>()
950 throws java.lang.Exception</PRE>
951<DL>
952<DD>Collects the stems of the file names.
953<P>
954<DD><DL>
955</DL>
956</DD>
957<DD><DL>
958
959<DD><CODE>java.lang.Exception</CODE></DL>
960</DD>
961</DL>
962<HR>
963
964<A NAME="buildModel(java.util.Hashtable)"><!-- --></A><H3>
965buildModel</H3>
966<PRE>
967public void <B>buildModel</B>(java.util.Hashtable&nbsp;stems)
968 throws java.lang.Exception</PRE>
969<DL>
970<DD>Builds the model from the files
971<P>
972<DD><DL>
973</DL>
974</DD>
975<DD><DL>
976
977<DD><CODE>java.lang.Exception</CODE></DL>
978</DD>
979</DL>
980<HR>
981
982<A NAME="saveModel()"><!-- --></A><H3>
983saveModel</H3>
984<PRE>
985public void <B>saveModel</B>()
986 throws java.lang.Exception</PRE>
987<DL>
988<DD>Saves the extraction model to the file.
989<P>
990<DD><DL>
991</DL>
992</DD>
993<DD><DL>
994
995<DD><CODE>java.lang.Exception</CODE></DL>
996</DD>
997</DL>
998<HR>
999
1000<A NAME="main(java.lang.String[])"><!-- --></A><H3>
1001main</H3>
1002<PRE>
1003public static void <B>main</B>(java.lang.String[]&nbsp;ops)</PRE>
1004<DL>
1005<DD>The main method.
1006<P>
1007<DD><DL>
1008</DL>
1009</DD>
1010<DD><DL>
1011</DL>
1012</DD>
1013</DL>
1014<!-- ========= END OF CLASS DATA ========= -->
1015<HR>
1016
1017<!-- ========== START OF NAVBAR ========== -->
1018<A NAME="navbar_bottom"><!-- --></A>
1019<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0">
1020<TR>
1021<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
1022<A NAME="navbar_bottom_firstrow"><!-- --></A>
1023<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3">
1024 <TR ALIGN="center" VALIGN="top">
1025 <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Package</FONT>&nbsp;</TD>
1026&nbsp;</TD>
1027 <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD>
1028 <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
1029 <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>
1030 <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD>
1031 <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>
1032 </TR>
1033</TABLE>
1034</TD>
1035<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
1036</EM>
1037</TD>
1038</TR>
1039
1040<TR>
1041<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
1042&nbsp;<A HREF="KEAKeyphraseExtractor.html"><B>PREV CLASS</B></A>&nbsp;
1043&nbsp;<A HREF="KEAPhraseFilter.html"><B>NEXT CLASS</B></A></FONT></TD>
1044<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
1045 <A HREF="index.html" TARGET="_top"><B>FRAMES</B></A> &nbsp;
1046&nbsp;<A HREF="KEAModelBuilder.html" TARGET="_top"><B>NO FRAMES</B></A> &nbsp;
1047&nbsp;
1048<SCRIPT>
1049 <!--
1050 if(window==top) {
1051 document.writeln('<A HREF="allclasses-noframe.html" TARGET=""><B>All Classes</B></A>');
1052 }
1053 //-->
1054</SCRIPT>
1055<NOSCRIPT>
1056<A HREF="allclasses-noframe.html" TARGET=""><B>All Classes</B></A>
1057</NOSCRIPT>
1058</FONT></TD>
1059</TR>
1060<TR>
1061<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
1062 SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;FIELD&nbsp;|&nbsp;<A HREF="#constructor_summary">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD>
1063<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
1064DETAIL:&nbsp;FIELD&nbsp;|&nbsp;<A HREF="#constructor_detail">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD>
1065</TR>
1066</TABLE>
1067<!-- =========== END OF NAVBAR =========== -->
1068
1069<HR>
1070
1071</BODY>
1072</HTML>
Note: See TracBrowser for help on using the repository browser.