clean up javadoc warnings

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1083124 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Chris M. Hostetter 2011-03-19 01:51:29 +00:00
parent 55c033c666
commit 67fecffee5
4 changed files with 8 additions and 8 deletions

View File

@ -186,6 +186,7 @@
<path refid="compile.classpath.solrj"/>
<fileset dir="contrib">
<include name="**/lib/**/*.jar"/>
<include name="**/lucene-libs/**/*.jar"/>
</fileset>
<pathelement location="${dest}/client/solrj"/>
</path>
@ -197,6 +198,7 @@
<packageset dir="${src}/java" />
<packageset dir="${src}/webapp/src" />
<packageset dir="contrib/dataimporthandler/src/main/java" />
<packageset dir="contrib/dataimporthandler/src/extras/main/java" />
<packageset dir="contrib/clustering/src/main/java" />
<packageset dir="contrib/extraction/src/main/java" />
<packageset dir="contrib/uima/src/main/java" />

View File

@ -54,9 +54,7 @@ public class FileUtils {
}
/**
* Copied from Lucene's {@link org.apache.lucene.store.FSDirectory#sync(String)}
*
* @see org.apache.lucene.store.FSDirectory#sync(String)
* Copied from Lucene's FSDirectory.sync(String) <!-- protected -->
*
* @param fullFile the File to be synced to disk
* @throws IOException if the file could not be synced

View File

@ -58,7 +58,7 @@ public abstract class FieldType extends FieldProperties {
/**
* The default poly field separator.
*
* @see #createFields(SchemaField, String, float)
* @see #createFields(SchemaField, Object, float)
* @see #isPolyField()
*/
public static final String POLY_FIELD_SEPARATOR = "___";
@ -85,9 +85,9 @@ public abstract class FieldType extends FieldProperties {
}
/**
* A "polyField" is a FieldType that can produce more than one Fieldable instance for a single value, via the {@link #createFields(org.apache.solr.schema.SchemaField, String, float)} method. This is useful
* A "polyField" is a FieldType that can produce more than one Fieldable instance for a single value, via the {@link #createFields(org.apache.solr.schema.SchemaField, Object, float)} method. This is useful
* when hiding the implementation details of a field from the Solr end user. For instance, a spatial point may be represented by multiple different fields.
* @return true if the {@link #createFields(org.apache.solr.schema.SchemaField, String, float)} method may return more than one field
* @return true if the {@link #createFields(org.apache.solr.schema.SchemaField, Object, float)} method may return more than one field
*/
public boolean isPolyField(){
return false;
@ -273,7 +273,7 @@ public abstract class FieldType extends FieldProperties {
/**
* Given a {@link org.apache.solr.schema.SchemaField}, create one or more {@link org.apache.lucene.document.Fieldable} instances
* @param field the {@link org.apache.solr.schema.SchemaField}
* @param externalVal The value to add to the field
* @param value The value to add to the field
* @param boost The boost to apply
* @return An array of {@link org.apache.lucene.document.Fieldable}
*

View File

@ -102,7 +102,7 @@ public final class SchemaField extends FieldProperties {
}
/**
* If true, then use {@link #createFields(String, float)}, else use {@link #createField} to save an extra allocation
* If true, then use {@link #createFields(Object, float)}, else use {@link #createField} to save an extra allocation
* @return true if this field is a poly field
*/
public boolean isPolyField(){