mirror of https://github.com/apache/lucene.git
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:
parent
55c033c666
commit
67fecffee5
|
@ -186,6 +186,7 @@
|
||||||
<path refid="compile.classpath.solrj"/>
|
<path refid="compile.classpath.solrj"/>
|
||||||
<fileset dir="contrib">
|
<fileset dir="contrib">
|
||||||
<include name="**/lib/**/*.jar"/>
|
<include name="**/lib/**/*.jar"/>
|
||||||
|
<include name="**/lucene-libs/**/*.jar"/>
|
||||||
</fileset>
|
</fileset>
|
||||||
<pathelement location="${dest}/client/solrj"/>
|
<pathelement location="${dest}/client/solrj"/>
|
||||||
</path>
|
</path>
|
||||||
|
@ -197,6 +198,7 @@
|
||||||
<packageset dir="${src}/java" />
|
<packageset dir="${src}/java" />
|
||||||
<packageset dir="${src}/webapp/src" />
|
<packageset dir="${src}/webapp/src" />
|
||||||
<packageset dir="contrib/dataimporthandler/src/main/java" />
|
<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/clustering/src/main/java" />
|
||||||
<packageset dir="contrib/extraction/src/main/java" />
|
<packageset dir="contrib/extraction/src/main/java" />
|
||||||
<packageset dir="contrib/uima/src/main/java" />
|
<packageset dir="contrib/uima/src/main/java" />
|
||||||
|
|
|
@ -54,9 +54,7 @@ public class FileUtils {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Copied from Lucene's {@link org.apache.lucene.store.FSDirectory#sync(String)}
|
* Copied from Lucene's FSDirectory.sync(String) <!-- protected -->
|
||||||
*
|
|
||||||
* @see org.apache.lucene.store.FSDirectory#sync(String)
|
|
||||||
*
|
*
|
||||||
* @param fullFile the File to be synced to disk
|
* @param fullFile the File to be synced to disk
|
||||||
* @throws IOException if the file could not be synced
|
* @throws IOException if the file could not be synced
|
||||||
|
|
|
@ -58,7 +58,7 @@ public abstract class FieldType extends FieldProperties {
|
||||||
/**
|
/**
|
||||||
* The default poly field separator.
|
* The default poly field separator.
|
||||||
*
|
*
|
||||||
* @see #createFields(SchemaField, String, float)
|
* @see #createFields(SchemaField, Object, float)
|
||||||
* @see #isPolyField()
|
* @see #isPolyField()
|
||||||
*/
|
*/
|
||||||
public static final String POLY_FIELD_SEPARATOR = "___";
|
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.
|
* 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(){
|
public boolean isPolyField(){
|
||||||
return false;
|
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
|
* 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 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
|
* @param boost The boost to apply
|
||||||
* @return An array of {@link org.apache.lucene.document.Fieldable}
|
* @return An array of {@link org.apache.lucene.document.Fieldable}
|
||||||
*
|
*
|
||||||
|
|
|
@ -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
|
* @return true if this field is a poly field
|
||||||
*/
|
*/
|
||||||
public boolean isPolyField(){
|
public boolean isPolyField(){
|
||||||
|
|
Loading…
Reference in New Issue