You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by ak...@apache.org on 2005/05/23 22:28:38 UTC

svn commit: r178012 - /directory/shared/ldap/trunk/common/src/java/org/apache/ldap/common/filter/FilterParser.java

Author: akarasulu
Date: Mon May 23 13:28:38 2005
New Revision: 178012

URL: http://svn.apache.org/viewcvs?rev=178012&view=rev
Log:
formatting

Modified:
    directory/shared/ldap/trunk/common/src/java/org/apache/ldap/common/filter/FilterParser.java

Modified: directory/shared/ldap/trunk/common/src/java/org/apache/ldap/common/filter/FilterParser.java
URL: http://svn.apache.org/viewcvs/directory/shared/ldap/trunk/common/src/java/org/apache/ldap/common/filter/FilterParser.java?rev=178012&r1=178011&r2=178012&view=diff
==============================================================================
--- directory/shared/ldap/trunk/common/src/java/org/apache/ldap/common/filter/FilterParser.java (original)
+++ directory/shared/ldap/trunk/common/src/java/org/apache/ldap/common/filter/FilterParser.java Mon May 23 13:28:38 2005
@@ -25,8 +25,7 @@
  * Parses an LDAP Filter expression as specified by RFC 2255 into a filter 
  * expression tree.
  * 
- * @author <a href="mailto:dev@directory.apache.org">
- * Apache Directory Project</a>
+ * @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
  * @version $Rev$
  */
 public interface FilterParser
@@ -39,13 +38,12 @@
      * @throws IOException if a pipe breaks
      * @throws ParseException if the input string does not conform to syntax
      */
-    ExprNode parse( String a_filter )
-        throws IOException, ParseException ;
-
-    /**
-     * Sets the monitor for this filter parser.
-     *  
-     * @param monitor monitor that recieves parser events
-     */
-    void setFilterParserMonitor( FilterParserMonitor monitor ) ;
+    ExprNode parse( String a_filter ) throws IOException, ParseException ;
+
+    /**
+     * Sets the monitor for this filter parser.
+     *  
+     * @param monitor monitor that recieves parser events
+     */
+    void setFilterParserMonitor( FilterParserMonitor monitor ) ;
 }