You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jackrabbit.apache.org by ju...@apache.org on 2011/03/11 16:00:00 UTC

svn commit: r1080591 - /jackrabbit/trunk/jackrabbit-api/src/main/java/org/apache/jackrabbit/api/security/user/QueryBuilder.java

Author: jukka
Date: Fri Mar 11 15:00:00 2011
New Revision: 1080591

URL: http://svn.apache.org/viewvc?rev=1080591&view=rev
Log:
Use ASCII characters in javadocs

Modified:
    jackrabbit/trunk/jackrabbit-api/src/main/java/org/apache/jackrabbit/api/security/user/QueryBuilder.java

Modified: jackrabbit/trunk/jackrabbit-api/src/main/java/org/apache/jackrabbit/api/security/user/QueryBuilder.java
URL: http://svn.apache.org/viewvc/jackrabbit/trunk/jackrabbit-api/src/main/java/org/apache/jackrabbit/api/security/user/QueryBuilder.java?rev=1080591&r1=1080590&r2=1080591&view=diff
==============================================================================
--- jackrabbit/trunk/jackrabbit-api/src/main/java/org/apache/jackrabbit/api/security/user/QueryBuilder.java (original)
+++ jackrabbit/trunk/jackrabbit-api/src/main/java/org/apache/jackrabbit/api/security/user/QueryBuilder.java Fri Mar 11 15:00:00 2011
@@ -120,9 +120,9 @@ public interface QueryBuilder<T> {
     /**
      * Create a condition which holds iff the name of the {@link Authorizable}
      * matches a <code>pattern</code>.
-     * The percent character Ô%Õ represents any string of zero or more characters and the
-     * underscore character Ô_Õ represents any single character. Any literal use of these characters
-     * and the backslash character Ô\Õ must be escaped with a backslash character.
+     * The percent character "%" represents any string of zero or more characters and the
+     * underscore character "_" represents any single character. Any literal use of these characters
+     * and the backslash character "\" must be escaped with a backslash character.
      * The pattern is matched against the {@link Authorizable#getID() id} and the
      * {@link Authorizable#getPrincipal() principal}.
      *
@@ -224,9 +224,9 @@ public interface QueryBuilder<T> {
     /**
      * Create a condition which holds iff the node of an {@link Authorizable} has a
      * property at <code>relPath</code> which matches the pattern in <code>pattern</code>.
-     * The percent character Ô%Õ represents any string of zero or more characters and the
-     * underscore character Ô_Õ represents any single character. Any literal use of these characters
-     * and the backslash character Ô\Õ must be escaped with a backslash character.
+     * The percent character "%" represents any string of zero or more characters and the
+     * underscore character "_" represents any single character. Any literal use of these characters
+     * and the backslash character "\" must be escaped with a backslash character.
      * The format of the <code>relPath</code> argument is the same as in XPath:
      * <code>@attributeName</code> for an attribute on this node and
      * <code>relative/path/@attributeName</code> for an attribute of a descendant node.