You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by jo...@apache.org on 2002/06/03 20:26:36 UTC

cvs commit: jakarta-commons-sandbox/betwixt/src/java/org/apache/commons/betwixt AttributeDescriptor.java ElementDescriptor.java

jon         2002/06/03 11:26:36

  Modified:    betwixt/src/java/org/apache/commons/betwixt
                        AttributeDescriptor.java ElementDescriptor.java
  Log:
  fixed debugging output
  
  -jon
  
  Revision  Changes    Path
  1.6       +6 -6      jakarta-commons-sandbox/betwixt/src/java/org/apache/commons/betwixt/AttributeDescriptor.java
  
  Index: AttributeDescriptor.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/betwixt/src/java/org/apache/commons/betwixt/AttributeDescriptor.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- AttributeDescriptor.java	17 May 2002 15:24:09 -0000	1.5
  +++ AttributeDescriptor.java	3 Jun 2002 18:26:36 -0000	1.6
  @@ -1,7 +1,7 @@
   /*
  - * $Header: /home/cvs/jakarta-commons-sandbox/betwixt/src/java/org/apache/commons/betwixt/AttributeDescriptor.java,v 1.5 2002/05/17 15:24:09 jstrachan Exp $
  - * $Revision: 1.5 $
  - * $Date: 2002/05/17 15:24:09 $
  + * $Header: /home/cvs/jakarta-commons-sandbox/betwixt/src/java/org/apache/commons/betwixt/AttributeDescriptor.java,v 1.6 2002/06/03 18:26:36 jon Exp $
  + * $Revision: 1.6 $
  + * $Date: 2002/06/03 18:26:36 $
    *
    * ====================================================================
    *
  @@ -57,7 +57,7 @@
    * information on the Apache Software Foundation, please see
    * <http://www.apache.org/>.
    *
  - * $Id: AttributeDescriptor.java,v 1.5 2002/05/17 15:24:09 jstrachan Exp $
  + * $Id: AttributeDescriptor.java,v 1.6 2002/06/03 18:26:36 jon Exp $
    */
   package org.apache.commons.betwixt;
   
  @@ -65,7 +65,7 @@
     * to be created for a bean instance.</p>
     *
     * @author <a href="mailto:jstrachan@apache.org">James Strachan</a>
  -  * @version $Revision: 1.5 $
  +  * @version $Revision: 1.6 $
     */
   public class AttributeDescriptor extends NodeDescriptor {
   
  @@ -85,6 +85,6 @@
       
       /** Return something useful for logging */
       public String toString() {
  -        return "AttributeDescriptor[qname=" + getQualifiedName() + ",class=" + getPropertyType();
  +        return "AttributeDescriptor[qname=" + getQualifiedName() + ",class=" + getPropertyType() + "]";
       }
   }
  
  
  
  1.11      +6 -6      jakarta-commons-sandbox/betwixt/src/java/org/apache/commons/betwixt/ElementDescriptor.java
  
  Index: ElementDescriptor.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/betwixt/src/java/org/apache/commons/betwixt/ElementDescriptor.java,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- ElementDescriptor.java	17 May 2002 15:24:09 -0000	1.10
  +++ ElementDescriptor.java	3 Jun 2002 18:26:36 -0000	1.11
  @@ -1,7 +1,7 @@
   /*
  - * $Header: /home/cvs/jakarta-commons-sandbox/betwixt/src/java/org/apache/commons/betwixt/ElementDescriptor.java,v 1.10 2002/05/17 15:24:09 jstrachan Exp $
  - * $Revision: 1.10 $
  - * $Date: 2002/05/17 15:24:09 $
  + * $Header: /home/cvs/jakarta-commons-sandbox/betwixt/src/java/org/apache/commons/betwixt/ElementDescriptor.java,v 1.11 2002/06/03 18:26:36 jon Exp $
  + * $Revision: 1.11 $
  + * $Date: 2002/06/03 18:26:36 $
    *
    * ====================================================================
    *
  @@ -57,7 +57,7 @@
    * information on the Apache Software Foundation, please see
    * <http://www.apache.org/>.
    * 
  - * $Id: ElementDescriptor.java,v 1.10 2002/05/17 15:24:09 jstrachan Exp $
  + * $Id: ElementDescriptor.java,v 1.11 2002/06/03 18:26:36 jon Exp $
    */
   package org.apache.commons.betwixt;
   
  @@ -73,7 +73,7 @@
     * and <code>ElementDescriptor</code>'s for it's child elements.
     *
     * @author <a href="mailto:jstrachan@apache.org">James Strachan</a>
  -  * @version $Revision: 1.10 $
  +  * @version $Revision: 1.11 $
     */
   public class ElementDescriptor extends NodeDescriptor {
   
  @@ -121,7 +121,7 @@
       }
   
       public String toString() {
  -        return "ElementDescriptor[qname=" + getQualifiedName() + ",class=" + getPropertyType();
  +        return "ElementDescriptor[qname=" + getQualifiedName() + ",class=" + getPropertyType() + "]";
       }
       
       /** Creates a <code>ElementDescriptor</code> with namespace URI and qualified name */
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>