You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Mark Hindess (JIRA)" <ji...@apache.org> on 2009/06/25 21:48:07 UTC

[jira] Closed: (HARMONY-2090) [classlib][html] Compatibilty. Difference with the RI in the return value of javax.swing.text.html.parser.AttributeList.toString()

     [ https://issues.apache.org/jira/browse/HARMONY-2090?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Mark Hindess closed HARMONY-2090.
---------------------------------


Closing as this works for me with M10.


> [classlib][html] Compatibilty. Difference with the RI in the return value of javax.swing.text.html.parser.AttributeList.toString()
> ----------------------------------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2090
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2090
>             Project: Harmony
>          Issue Type: Bug
>            Reporter: Miguel Montes
>            Assignee: Alexey Petrenko
>         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.
-
You can reply to this email to add a comment to the issue online.