From commits-return-14336-apmail-directory-commits-archive=directory.apache.org@directory.apache.org Fri Jun 22 17:31:23 2007 Return-Path: Delivered-To: apmail-directory-commits-archive@www.apache.org Received: (qmail 8863 invoked from network); 22 Jun 2007 17:31:21 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 22 Jun 2007 17:31:21 -0000 Received: (qmail 23622 invoked by uid 500); 22 Jun 2007 17:31:25 -0000 Delivered-To: apmail-directory-commits-archive@directory.apache.org Received: (qmail 23580 invoked by uid 500); 22 Jun 2007 17:31:25 -0000 Mailing-List: contact commits-help@directory.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@directory.apache.org Delivered-To: mailing list commits@directory.apache.org Received: (qmail 23568 invoked by uid 99); 22 Jun 2007 17:31:25 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 22 Jun 2007 10:31:25 -0700 X-ASF-Spam-Status: No, hits=-99.5 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 22 Jun 2007 10:31:21 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id B2BFB1A981A; Fri, 22 Jun 2007 10:31:00 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r549891 - in /directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/schema: AbstractSyntax.java SchemaUtils.java Syntax.java Date: Fri, 22 Jun 2007 17:31:00 -0000 To: commits@directory.apache.org From: elecharny@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20070622173100.B2BFB1A981A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: elecharny Date: Fri Jun 22 10:30:59 2007 New Revision: 549891 URL: http://svn.apache.org/viewvc?view=rev&rev=549891 Log: Fixed a typo : readible instead of readable Modified: directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/schema/AbstractSyntax.java directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/schema/SchemaUtils.java directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/schema/Syntax.java Modified: directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/schema/AbstractSyntax.java URL: http://svn.apache.org/viewvc/directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/schema/AbstractSyntax.java?view=diff&rev=549891&r1=549890&r2=549891 ============================================================================== --- directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/schema/AbstractSyntax.java (original) +++ directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/schema/AbstractSyntax.java Fri Jun 22 10:30:59 2007 @@ -28,8 +28,8 @@ */ public abstract class AbstractSyntax extends AbstractSchemaObject implements Syntax { - /** the human readible flag */ - private boolean isHumanReadible = false; + /** the human readable flag */ + private boolean isHumanReadable = false; // ------------------------------------------------------------------------ @@ -53,13 +53,13 @@ * * @param oid * the OID for this Syntax - * @param isHumanReadible - * whether or not Syntax is human readible + * @param isHumanReadable + * whether or not Syntax is human readable */ - protected AbstractSyntax(String oid, boolean isHumanReadible) + protected AbstractSyntax(String oid, boolean isHumanReadable) { super( oid ); - this.isHumanReadible = isHumanReadible; + this.isHumanReadable = isHumanReadable; } @@ -82,15 +82,15 @@ * * @param oid * the OID for this Syntax - * @param isHumanReadible - * whether or not Syntax is human readible + * @param isHumanReadable + * whether or not Syntax is human readable * @param description * the description for this Syntax */ - protected AbstractSyntax(String oid, String description, boolean isHumanReadible) + protected AbstractSyntax(String oid, String description, boolean isHumanReadable) { super( oid, description ); - this.isHumanReadible = isHumanReadible; + this.isHumanReadable = isHumanReadable; } @@ -99,11 +99,11 @@ // ------------------------------------------------------------------------ /** - * @see org.apache.directory.shared.ldap.schema.Syntax#isHumanReadible() + * @see org.apache.directory.shared.ldap.schema.Syntax#isHumanReadable() */ - public final boolean isHumanReadible() + public final boolean isHumanReadable() { - return isHumanReadible; + return isHumanReadable; } @@ -112,14 +112,14 @@ // ------------------------------------------------------------------------ /** - * Sets the human readible flag value. + * Sets the human readable flag value. * - * @param isHumanReadible - * the human readible flag value to set + * @param isHumanReadable + * the human readable flag value to set */ - protected void setHumanReadible( boolean isHumanReadible ) + protected void setHumanReadable( boolean isHumanReadable ) { - this.isHumanReadible = isHumanReadible; + this.isHumanReadable = isHumanReadable; } Modified: directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/schema/SchemaUtils.java URL: http://svn.apache.org/viewvc/directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/schema/SchemaUtils.java?view=diff&rev=549891&r1=549890&r2=549891 ============================================================================== --- directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/schema/SchemaUtils.java (original) +++ directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/schema/SchemaUtils.java Fri Jun 22 10:30:59 2007 @@ -737,7 +737,7 @@ buf.append( " X-SCHEMA '" ); buf.append( syntax.getSchema() ); - if ( syntax.isHumanReadible() ) + if ( syntax.isHumanReadable() ) { buf.append( "' X-IS-HUMAN-READABLE 'true'" ); } Modified: directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/schema/Syntax.java URL: http://svn.apache.org/viewvc/directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/schema/Syntax.java?view=diff&rev=549891&r1=549890&r2=549891 ============================================================================== --- directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/schema/Syntax.java (original) +++ directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/schema/Syntax.java Fri Jun 22 10:30:59 2007 @@ -71,11 +71,11 @@ public interface Syntax extends SchemaObject { /** - * Gets whether or not the Syntax is human readible. + * Gets whether or not the Syntax is human readable. * * @return true if the syntax can be interpretted by humans, false otherwise */ - boolean isHumanReadible(); + boolean isHumanReadable(); /**