(String name, String value, Reader
>> reader) {
>> Field aField = Text(name, value);
>> aField.readerValue = reader;
>> return aField;
>> }
>>
>> Thanks
>>
>
>
> ---------------------
&
Hi,
I would recommend downloading the 1.9.0 release for porting your code.
It will show you what's deprecated and the javadoc will show you the
proper way to do it.
What you would want with your field is:
/** Constructs a String-valued Field that is tokenized and indexed,
and is stored in
final Field Text(String name, String value, Reader reader) {
Field aField = Text(name, value);
aField.readerValue = reader;
return aField;
}
Thanks
--
View this message in context:
http://www.nabble.com/Conversion-from-Lucene-1.4.3-API-to-2.2.0-API.-tf4958346.html#a14200220
Sent