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 rm...@apache.org on 2010/02/12 05:10:07 UTC

svn commit: r909219 - in /lucene/java/branches/flex_1458/src/java/org/apache/lucene: search/ util/automaton/

Author: rmuir
Date: Fri Feb 12 04:10:06 2010
New Revision: 909219

URL: http://svn.apache.org/viewvc?rev=909219&view=rev
Log:
@lucene.experimental for automaton

Modified:
    lucene/java/branches/flex_1458/src/java/org/apache/lucene/search/AutomatonQuery.java
    lucene/java/branches/flex_1458/src/java/org/apache/lucene/search/AutomatonTermsEnum.java
    lucene/java/branches/flex_1458/src/java/org/apache/lucene/search/RegexpQuery.java
    lucene/java/branches/flex_1458/src/java/org/apache/lucene/util/automaton/Automaton.java
    lucene/java/branches/flex_1458/src/java/org/apache/lucene/util/automaton/AutomatonProvider.java
    lucene/java/branches/flex_1458/src/java/org/apache/lucene/util/automaton/BasicAutomata.java
    lucene/java/branches/flex_1458/src/java/org/apache/lucene/util/automaton/BasicOperations.java
    lucene/java/branches/flex_1458/src/java/org/apache/lucene/util/automaton/MinimizationOperations.java
    lucene/java/branches/flex_1458/src/java/org/apache/lucene/util/automaton/RegExp.java
    lucene/java/branches/flex_1458/src/java/org/apache/lucene/util/automaton/RunAutomaton.java
    lucene/java/branches/flex_1458/src/java/org/apache/lucene/util/automaton/SpecialOperations.java
    lucene/java/branches/flex_1458/src/java/org/apache/lucene/util/automaton/State.java
    lucene/java/branches/flex_1458/src/java/org/apache/lucene/util/automaton/StatePair.java
    lucene/java/branches/flex_1458/src/java/org/apache/lucene/util/automaton/Transition.java
    lucene/java/branches/flex_1458/src/java/org/apache/lucene/util/automaton/TransitionComparator.java
    lucene/java/branches/flex_1458/src/java/org/apache/lucene/util/automaton/package.html

Modified: lucene/java/branches/flex_1458/src/java/org/apache/lucene/search/AutomatonQuery.java
URL: http://svn.apache.org/viewvc/lucene/java/branches/flex_1458/src/java/org/apache/lucene/search/AutomatonQuery.java?rev=909219&r1=909218&r2=909219&view=diff
==============================================================================
--- lucene/java/branches/flex_1458/src/java/org/apache/lucene/search/AutomatonQuery.java (original)
+++ lucene/java/branches/flex_1458/src/java/org/apache/lucene/search/AutomatonQuery.java Fri Feb 12 04:10:06 2010
@@ -47,6 +47,7 @@
  * expression of <code>[dl]og?</code> will make approximately four comparisons:
  * do, dog, lo, and log.
  * </p>
+ * @lucene.experimental
  */
 public class AutomatonQuery extends MultiTermQuery {
   /** the automaton to match index terms against */

Modified: lucene/java/branches/flex_1458/src/java/org/apache/lucene/search/AutomatonTermsEnum.java
URL: http://svn.apache.org/viewvc/lucene/java/branches/flex_1458/src/java/org/apache/lucene/search/AutomatonTermsEnum.java?rev=909219&r1=909218&r2=909219&view=diff
==============================================================================
--- lucene/java/branches/flex_1458/src/java/org/apache/lucene/search/AutomatonTermsEnum.java (original)
+++ lucene/java/branches/flex_1458/src/java/org/apache/lucene/search/AutomatonTermsEnum.java Fri Feb 12 04:10:06 2010
@@ -54,11 +54,7 @@
  * Use {@link #usesLinearMode} to find out if it enumerates all terms
  * in linear mode without seeking.
  * </p>
- * <p>
- * <font color="#FF0000"> WARNING: The status of the <b>Automaton</b> feature is
- * experimental. The APIs introduced here might change in the future and will
- * not be supported anymore in such a case.</font>
- * </p>
+ * @lucene.experimental
  */
 public class AutomatonTermsEnum extends FilteredTermsEnum {
   // the object-oriented form of the DFA

Modified: lucene/java/branches/flex_1458/src/java/org/apache/lucene/search/RegexpQuery.java
URL: http://svn.apache.org/viewvc/lucene/java/branches/flex_1458/src/java/org/apache/lucene/search/RegexpQuery.java?rev=909219&r1=909218&r2=909219&view=diff
==============================================================================
--- lucene/java/branches/flex_1458/src/java/org/apache/lucene/search/RegexpQuery.java (original)
+++ lucene/java/branches/flex_1458/src/java/org/apache/lucene/search/RegexpQuery.java Fri Feb 12 04:10:06 2010
@@ -46,6 +46,7 @@
  * the expression <code>.*</code>
  * 
  * @see RegExp
+ * @lucene.experimental
  */
 public class RegexpQuery extends AutomatonQuery {
   /**

Modified: lucene/java/branches/flex_1458/src/java/org/apache/lucene/util/automaton/Automaton.java
URL: http://svn.apache.org/viewvc/lucene/java/branches/flex_1458/src/java/org/apache/lucene/util/automaton/Automaton.java?rev=909219&r1=909218&r2=909219&view=diff
==============================================================================
--- lucene/java/branches/flex_1458/src/java/org/apache/lucene/util/automaton/Automaton.java (original)
+++ lucene/java/branches/flex_1458/src/java/org/apache/lucene/util/automaton/Automaton.java Fri Feb 12 04:10:06 2010
@@ -63,9 +63,7 @@
  * assumed by the built-in automata operations.
  * 
  * <p>
- * <font color="#FF0000"> WARNING: The status of the <b>Automaton</b> feature is
- * experimental. The APIs introduced here might change in the future and will
- * not be supported anymore in such a case.</font>
+ * @lucene.experimental
  */
 public class Automaton implements Serializable, Cloneable {
   

Modified: lucene/java/branches/flex_1458/src/java/org/apache/lucene/util/automaton/AutomatonProvider.java
URL: http://svn.apache.org/viewvc/lucene/java/branches/flex_1458/src/java/org/apache/lucene/util/automaton/AutomatonProvider.java?rev=909219&r1=909218&r2=909219&view=diff
==============================================================================
--- lucene/java/branches/flex_1458/src/java/org/apache/lucene/util/automaton/AutomatonProvider.java (original)
+++ lucene/java/branches/flex_1458/src/java/org/apache/lucene/util/automaton/AutomatonProvider.java Fri Feb 12 04:10:06 2010
@@ -35,10 +35,7 @@
  * Automaton provider for <code>RegExp.</code>
  * {@link RegExp#toAutomaton(AutomatonProvider)}
  * 
- * <p><font color="#FF0000">
- * WARNING: The status of the <b>Automaton</b> feature is experimental.
- * The APIs introduced here might change in the future and will not be
- * supported anymore in such a case.</font>
+ * @lucene.experimental
  */
 public interface AutomatonProvider {
   

Modified: lucene/java/branches/flex_1458/src/java/org/apache/lucene/util/automaton/BasicAutomata.java
URL: http://svn.apache.org/viewvc/lucene/java/branches/flex_1458/src/java/org/apache/lucene/util/automaton/BasicAutomata.java?rev=909219&r1=909218&r2=909219&view=diff
==============================================================================
--- lucene/java/branches/flex_1458/src/java/org/apache/lucene/util/automaton/BasicAutomata.java (original)
+++ lucene/java/branches/flex_1458/src/java/org/apache/lucene/util/automaton/BasicAutomata.java Fri Feb 12 04:10:06 2010
@@ -38,10 +38,7 @@
 /**
  * Construction of basic automata.
  * 
- * <p><font color="#FF0000">
- * WARNING: The status of the <b>Automaton</b> feature is experimental.
- * The APIs introduced here might change in the future and will not be
- * supported anymore in such a case.</font>
+ * @lucene.experimental
  */
 final public class BasicAutomata {
   // used by getWhitespaceAutomaton to match basic whitespace

Modified: lucene/java/branches/flex_1458/src/java/org/apache/lucene/util/automaton/BasicOperations.java
URL: http://svn.apache.org/viewvc/lucene/java/branches/flex_1458/src/java/org/apache/lucene/util/automaton/BasicOperations.java?rev=909219&r1=909218&r2=909219&view=diff
==============================================================================
--- lucene/java/branches/flex_1458/src/java/org/apache/lucene/util/automaton/BasicOperations.java (original)
+++ lucene/java/branches/flex_1458/src/java/org/apache/lucene/util/automaton/BasicOperations.java Fri Feb 12 04:10:06 2010
@@ -42,10 +42,7 @@
 /**
  * Basic automata operations.
  * 
- * <p><font color="#FF0000">
- * WARNING: The status of the <b>Automaton</b> feature is experimental.
- * The APIs introduced here might change in the future and will not be
- * supported anymore in such a case.</font>
+ * @lucene.experimental
  */
 final public class BasicOperations {
   

Modified: lucene/java/branches/flex_1458/src/java/org/apache/lucene/util/automaton/MinimizationOperations.java
URL: http://svn.apache.org/viewvc/lucene/java/branches/flex_1458/src/java/org/apache/lucene/util/automaton/MinimizationOperations.java?rev=909219&r1=909218&r2=909219&view=diff
==============================================================================
--- lucene/java/branches/flex_1458/src/java/org/apache/lucene/util/automaton/MinimizationOperations.java (original)
+++ lucene/java/branches/flex_1458/src/java/org/apache/lucene/util/automaton/MinimizationOperations.java Fri Feb 12 04:10:06 2010
@@ -36,10 +36,7 @@
 /**
  * Operations for minimizing automata.
  * 
- * <p><font color="#FF0000">
- * WARNING: The status of the <b>Automaton</b> feature is experimental.
- * The APIs introduced here might change in the future and will not be
- * supported anymore in such a case.</font>
+ * @lucene.experimental
  */
 final public class MinimizationOperations {
   

Modified: lucene/java/branches/flex_1458/src/java/org/apache/lucene/util/automaton/RegExp.java
URL: http://svn.apache.org/viewvc/lucene/java/branches/flex_1458/src/java/org/apache/lucene/util/automaton/RegExp.java?rev=909219&r1=909218&r2=909219&view=diff
==============================================================================
--- lucene/java/branches/flex_1458/src/java/org/apache/lucene/util/automaton/RegExp.java (original)
+++ lucene/java/branches/flex_1458/src/java/org/apache/lucene/util/automaton/RegExp.java Fri Feb 12 04:10:06 2010
@@ -312,10 +312,7 @@
  * of digits, then the conforming strings must have that length (i.e. prefixed
  * by 0's).
  * 
- * <p><font color="#FF0000">
- * WARNING: The status of the <b>Automaton</b> feature is experimental.
- * The APIs introduced here might change in the future and will not be
- * supported anymore in such a case.</font>
+ * @lucene.experimental
  */
 public class RegExp {
   

Modified: lucene/java/branches/flex_1458/src/java/org/apache/lucene/util/automaton/RunAutomaton.java
URL: http://svn.apache.org/viewvc/lucene/java/branches/flex_1458/src/java/org/apache/lucene/util/automaton/RunAutomaton.java?rev=909219&r1=909218&r2=909219&view=diff
==============================================================================
--- lucene/java/branches/flex_1458/src/java/org/apache/lucene/util/automaton/RunAutomaton.java (original)
+++ lucene/java/branches/flex_1458/src/java/org/apache/lucene/util/automaton/RunAutomaton.java Fri Feb 12 04:10:06 2010
@@ -35,10 +35,7 @@
 /**
  * Finite-state automaton with fast run operation.
  * 
- * <p><font color="#FF0000">
- * WARNING: The status of the <b>Automaton</b> feature is experimental.
- * The APIs introduced here might change in the future and will not be
- * supported anymore in such a case.</font>
+ * @lucene.experimental
  */
 public final class RunAutomaton implements Serializable {
   

Modified: lucene/java/branches/flex_1458/src/java/org/apache/lucene/util/automaton/SpecialOperations.java
URL: http://svn.apache.org/viewvc/lucene/java/branches/flex_1458/src/java/org/apache/lucene/util/automaton/SpecialOperations.java?rev=909219&r1=909218&r2=909219&view=diff
==============================================================================
--- lucene/java/branches/flex_1458/src/java/org/apache/lucene/util/automaton/SpecialOperations.java (original)
+++ lucene/java/branches/flex_1458/src/java/org/apache/lucene/util/automaton/SpecialOperations.java Fri Feb 12 04:10:06 2010
@@ -36,10 +36,7 @@
 /**
  * Special automata operations.
  * 
- * <p><font color="#FF0000">
- * WARNING: The status of the <b>Automaton</b> feature is experimental.
- * The APIs introduced here might change in the future and will not be
- * supported anymore in such a case.</font>
+ * @lucene.experimental
  */
 final public class SpecialOperations {
   

Modified: lucene/java/branches/flex_1458/src/java/org/apache/lucene/util/automaton/State.java
URL: http://svn.apache.org/viewvc/lucene/java/branches/flex_1458/src/java/org/apache/lucene/util/automaton/State.java?rev=909219&r1=909218&r2=909219&view=diff
==============================================================================
--- lucene/java/branches/flex_1458/src/java/org/apache/lucene/util/automaton/State.java (original)
+++ lucene/java/branches/flex_1458/src/java/org/apache/lucene/util/automaton/State.java Fri Feb 12 04:10:06 2010
@@ -39,10 +39,7 @@
 /**
  * <tt>Automaton</tt> state.
  * 
- * <p><font color="#FF0000">
- * WARNING: The status of the <b>Automaton</b> feature is experimental.
- * The APIs introduced here might change in the future and will not be
- * supported anymore in such a case.</font>
+ * @lucene.experimental
  */
 public class State implements Serializable, Comparable<State> {
   

Modified: lucene/java/branches/flex_1458/src/java/org/apache/lucene/util/automaton/StatePair.java
URL: http://svn.apache.org/viewvc/lucene/java/branches/flex_1458/src/java/org/apache/lucene/util/automaton/StatePair.java?rev=909219&r1=909218&r2=909219&view=diff
==============================================================================
--- lucene/java/branches/flex_1458/src/java/org/apache/lucene/util/automaton/StatePair.java (original)
+++ lucene/java/branches/flex_1458/src/java/org/apache/lucene/util/automaton/StatePair.java Fri Feb 12 04:10:06 2010
@@ -32,10 +32,7 @@
 /**
  * Pair of states.
  * 
- * <p><font color="#FF0000">
- * WARNING: The status of the <b>Automaton</b> feature is experimental.
- * The APIs introduced here might change in the future and will not be
- * supported anymore in such a case.</font>
+ * @lucene.experimental
  */
 public class StatePair {
   State s;

Modified: lucene/java/branches/flex_1458/src/java/org/apache/lucene/util/automaton/Transition.java
URL: http://svn.apache.org/viewvc/lucene/java/branches/flex_1458/src/java/org/apache/lucene/util/automaton/Transition.java?rev=909219&r1=909218&r2=909219&view=diff
==============================================================================
--- lucene/java/branches/flex_1458/src/java/org/apache/lucene/util/automaton/Transition.java (original)
+++ lucene/java/branches/flex_1458/src/java/org/apache/lucene/util/automaton/Transition.java Fri Feb 12 04:10:06 2010
@@ -37,10 +37,7 @@
  * A transition, which belongs to a source state, consists of a Unicode
  * character interval and a destination state.
  * 
- * <p><font color="#FF0000">
- * WARNING: The status of the <b>Automaton</b> feature is experimental.
- * The APIs introduced here might change in the future and will not be
- * supported anymore in such a case.</font>
+ * @lucene.experimental
  */
 public class Transition implements Serializable, Cloneable {
   

Modified: lucene/java/branches/flex_1458/src/java/org/apache/lucene/util/automaton/TransitionComparator.java
URL: http://svn.apache.org/viewvc/lucene/java/branches/flex_1458/src/java/org/apache/lucene/util/automaton/TransitionComparator.java?rev=909219&r1=909218&r2=909219&view=diff
==============================================================================
--- lucene/java/branches/flex_1458/src/java/org/apache/lucene/util/automaton/TransitionComparator.java (original)
+++ lucene/java/branches/flex_1458/src/java/org/apache/lucene/util/automaton/TransitionComparator.java Fri Feb 12 04:10:06 2010
@@ -36,10 +36,7 @@
  * Comparator for state {@link Transition}s that orders unicode char range
  * transitions in lexicographic order.
  * 
- * <p><font color="#FF0000">
- * WARNING: The status of the <b>Automaton</b> feature is experimental.
- * The APIs introduced here might change in the future and will not be
- * supported anymore in such a case.</font>
+ * @lucene.experimental
  */
 class TransitionComparator implements Comparator<Transition>, Serializable {
   

Modified: lucene/java/branches/flex_1458/src/java/org/apache/lucene/util/automaton/package.html
URL: http://svn.apache.org/viewvc/lucene/java/branches/flex_1458/src/java/org/apache/lucene/util/automaton/package.html?rev=909219&r1=909218&r2=909219&view=diff
==============================================================================
--- lucene/java/branches/flex_1458/src/java/org/apache/lucene/util/automaton/package.html (original)
+++ lucene/java/branches/flex_1458/src/java/org/apache/lucene/util/automaton/package.html Fri Feb 12 04:10:06 2010
@@ -42,9 +42,6 @@
 For more information, go to the package home page at 
 <tt><a href="http://www.brics.dk/automaton/" 
 target="_top">http://www.brics.dk/automaton/</a></tt>.
-<p><font color="#FF0000">
-WARNING: The status of the <b>Automaton</b> feature is experimental.
-The APIs introduced here might change in the future and will not be
-supported anymore in such a case.</font>
+@lucene.experimental
 </body>
 </html>