You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-commits@lucene.apache.org by ma...@apache.org on 2009/08/20 17:22:42 UTC

svn commit: r806212 - /lucene/java/trunk/src/java/org/apache/lucene/analysis/tokenattributes/FlagsAttribute.java

Author: markrmiller
Date: Thu Aug 20 15:22:39 2009
New Revision: 806212

URL: http://svn.apache.org/viewvc?rev=806212&view=rev
Log:
add a link to Tokenizer and remove the periods in eg - javadoc will use up to the first period for summary

Modified:
    lucene/java/trunk/src/java/org/apache/lucene/analysis/tokenattributes/FlagsAttribute.java

Modified: lucene/java/trunk/src/java/org/apache/lucene/analysis/tokenattributes/FlagsAttribute.java
URL: http://svn.apache.org/viewvc/lucene/java/trunk/src/java/org/apache/lucene/analysis/tokenattributes/FlagsAttribute.java?rev=806212&r1=806211&r2=806212&view=diff
==============================================================================
--- lucene/java/trunk/src/java/org/apache/lucene/analysis/tokenattributes/FlagsAttribute.java (original)
+++ lucene/java/trunk/src/java/org/apache/lucene/analysis/tokenattributes/FlagsAttribute.java Thu Aug 20 15:22:39 2009
@@ -17,11 +17,12 @@
  * limitations under the License.
  */
 
+import org.apache.lucene.analysis.Tokenizer;
 import org.apache.lucene.util.Attribute;
 
 /**
- * This attribute can be used to pass different flags down the tokenizer chain,
- * e. g. from one TokenFilter to another one. 
+ * This attribute can be used to pass different flags down the {@link Tokenizer} chain,
+ * eg from one TokenFilter to another one. 
  */
 public interface FlagsAttribute extends Attribute {
   /**