Return-Path: Delivered-To: apmail-incubator-harmony-commits-archive@www.apache.org Received: (qmail 30882 invoked from network); 7 Nov 2006 16:07:17 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 7 Nov 2006 16:07:17 -0000 Received: (qmail 24050 invoked by uid 500); 7 Nov 2006 16:07:25 -0000 Delivered-To: apmail-incubator-harmony-commits-archive@incubator.apache.org Received: (qmail 23983 invoked by uid 500); 7 Nov 2006 16:07:25 -0000 Mailing-List: contact harmony-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: harmony-dev@incubator.apache.org Delivered-To: mailing list harmony-commits@incubator.apache.org Received: (qmail 23934 invoked by uid 99); 7 Nov 2006 16:07:25 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 07 Nov 2006 08:07:25 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO brutus.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 07 Nov 2006 08:07:12 -0800 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id EC330714311 for ; Tue, 7 Nov 2006 08:06:51 -0800 (PST) Message-ID: <26489509.1162915611964.JavaMail.jira@brutus> Date: Tue, 7 Nov 2006 08:06:51 -0800 (PST) From: "Miguel Montes (JIRA)" To: harmony-commits@incubator.apache.org Subject: [jira] Created: (HARMONY-2090) [classlib][html] Compatibilty. Difference with the RI in the return value of javax.swing.text.html.parser.AttributeList.toString() MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [classlib][html] Compatibilty. Difference with the RI in the return value of javax.swing.text.html.parser.AttributeList.toString() ---------------------------------------------------------------------------------------------------------------------------------- Key: HARMONY-2090 URL: http://issues.apache.org/jira/browse/HARMONY-2090 Project: Harmony Issue Type: Bug Reporter: Miguel Montes Attachments: AttributeList.patch The method javax.swing.text.html.parser.AttributeList.toString() return value differs from that of the RI. =============Java code================ import java.io.IOException; import java.util.Vector; import javax.swing.text.html.parser.*; public class TestAttributeListToString { public static void main(String[] args) throws IOException { AttributeList a = new AttributeList( "a", DTDConstants.NAME, DTDConstants.REQUIRED, null, new Vector(), null); System.out.println(a); } } ===================================== $ java -showversion TestAttributeListToString java version "1.5.0" Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0-b64) Java HotSpot(TM) Client VM (build 1.5.0-b64, mixed mode) a $ /harmony-hdk-r468731/jdk/jre/bin/java -showversion TestAttributeListToString Apache Harmony Launcher : (c) Copyright 1991, 2006 The Apache Software Foundation or its licensors, as applicable. java version "1.5.0" pre-alpha : not complete or compatible svn = r468731, (Oct 28 2006), Linux/ia32/gcc 3.4.6, release build http://incubator.apache.org/harmony AttributeList[name=a, type=7, modifier=2, value=null, values=[], next=null] -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira