Index: FuzzyQuery.java
===================================================================
RCS file: /home/cvs/jakarta-lucene/src/java/org/apache/lucene/search/FuzzyQuery.java,v
retrieving revision 1.1.1.1
diff -u -r1.1.1.1 FuzzyQuery.java
--- FuzzyQuery.java	18 Sep 2001 16:29:56 -0000	1.1.1.1
+++ FuzzyQuery.java	23 Oct 2002 21:21:51 -0000
@@ -76,4 +76,19 @@
     public String toString(String field) {
         return super.toString(field) + '~';
     }
+
+    public void setFuzzyTerm(Term fuzzyTerm)
+    {
+        this.fuzzyTerm = fuzzyTerm;
+    }
+
+    public Term getFuzzyTerm()
+    {
+        return fuzzyTerm;
+    }
+
+    public Object clone()
+    {
+        return new FuzzyQuery(fuzzyTerm);
+    }
 }
