From do-not-reply at jboss.org Tue Oct 12 06:14:09 2010 Content-Type: multipart/mixed; boundary="===============1840301286960079663==" MIME-Version: 1.0 From: do-not-reply at jboss.org To: gatein-commits at lists.jboss.org Subject: [gatein-commits] gatein SVN: r4637 - portal/branches/navcontroller/component/web/controller/src/main/java/org/exoplatform/web/controller. Date: Tue, 12 Oct 2010 06:14:08 -0400 Message-ID: <201010121014.o9CAE89p008117@svn01.web.mwc.hst.phx2.redhat.com> --===============1840301286960079663== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Author: julien_viet Date: 2010-10-12 06:14:07 -0400 (Tue, 12 Oct 2010) New Revision: 4637 Modified: portal/branches/navcontroller/component/web/controller/src/main/java/org= /exoplatform/web/controller/QualifiedName.java Log: minor Modified: portal/branches/navcontroller/component/web/controller/src/main/j= ava/org/exoplatform/web/controller/QualifiedName.java =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- portal/branches/navcontroller/component/web/controller/src/main/java/or= g/exoplatform/web/controller/QualifiedName.java 2010-10-12 10:11:29 UTC (re= v 4636) +++ portal/branches/navcontroller/component/web/controller/src/main/java/or= g/exoplatform/web/controller/QualifiedName.java 2010-10-12 10:14:07 UTC (re= v 4637) @@ -20,7 +20,8 @@ package org.exoplatform.web.controller; = /** - * A qualified name that is a qualifier and a name. + * A qualified name that is a qualifier and a name. It can be seen as a si= mplified version of an XML QName + * that retains only the prefix (qualifier) and the local name (name) and = leaves out the namespace. * * @author Julien Viet * @version $Revision$ @@ -51,7 +52,7 @@ private final String name; = /** - * Creates a qualified name with an empty qualifier. + * Creates a qualified name with an empty string qualifier. * * @param name the name */ @@ -128,6 +129,6 @@ @Override public String toString() { - return "QName[prefix=3D" + qualifier + ",name=3D" + name + "]"; + return "QualifiedName[prefix=3D" + qualifier + ",name=3D" + name + "= ]"; } } --===============1840301286960079663==--