Index: lucene/src/java/org/apache/lucene/search/FieldValueFilter.java
===================================================================
--- lucene/src/java/org/apache/lucene/search/FieldValueFilter.java	(revision 1211392)
+++ lucene/src/java/org/apache/lucene/search/FieldValueFilter.java	(working copy)
@@ -56,6 +56,22 @@
     this.field = field;
     this.negate = negate;
   }
+  
+  /**
+   * Returns the field this filter is applied on.
+   * @return the field this filter is applied on.
+   */
+  public String field() {
+    return field;
+  }
+  
+  /**
+   * Returns <code>true</code> iff this filter is negated, otherwise <code>false</code> 
+   * @return <code>true</code> iff this filter is negated, otherwise <code>false</code>
+   */
+  public boolean negate() {
+    return negate; 
+  }
 
   @Override
   public DocIdSet getDocIdSet(AtomicReaderContext context, Bits acceptDocs)
