doc deprecation alternative

git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@663665 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Yonik Seeley 2008-06-05 17:15:13 +00:00
parent bb26cafda2
commit edf6ed2faf
1 changed files with 4 additions and 0 deletions

View File

@ -407,6 +407,10 @@ public abstract class FieldType extends FieldProperties {
return getValueSource(field);
}
/**
* @deprecated use {@link #getValueSource(SchemaField, QParser)}
*/
@Deprecated
public ValueSource getValueSource(SchemaField field) {
return new OrdFieldSource(field.name);