Return-Path: Delivered-To: apmail-incubator-harmony-commits-archive@www.apache.org Received: (qmail 64659 invoked from network); 16 Aug 2006 09:48:15 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 16 Aug 2006 09:48:15 -0000 Received: (qmail 10518 invoked by uid 500); 16 Aug 2006 09:48:13 -0000 Delivered-To: apmail-incubator-harmony-commits-archive@incubator.apache.org Received: (qmail 10458 invoked by uid 500); 16 Aug 2006 09:48:13 -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 10426 invoked by uid 99); 16 Aug 2006 09:48:13 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 16 Aug 2006 02:48:13 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [209.237.227.198] (HELO brutus.apache.org) (209.237.227.198) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 16 Aug 2006 02:48:12 -0700 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id F3598714294 for ; Wed, 16 Aug 2006 09:45:16 +0000 (GMT) Message-ID: <25750214.1155721516994.JavaMail.jira@brutus> Date: Wed, 16 Aug 2006 02:45:16 -0700 (PDT) From: "Mikhail Loenko (JIRA)" To: harmony-commits@incubator.apache.org Subject: [jira] Assigned: (HARMONY-1205) [classlib][beans] PropertyEditorManager.findEditor(Class targetType) finds PropertyEditor incorrectly In-Reply-To: <17155699.1155708914066.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/HARMONY-1205?page=all ] Mikhail Loenko reassigned HARMONY-1205: --------------------------------------- Assignee: Mikhail Loenko > [classlib][beans] PropertyEditorManager.findEditor(Class targetType) finds PropertyEditor incorrectly > ----------------------------------------------------------------------------------------------------- > > Key: HARMONY-1205 > URL: http://issues.apache.org/jira/browse/HARMONY-1205 > Project: Harmony > Issue Type: Bug > Reporter: Igor V. Stolyarov > Assigned To: Mikhail Loenko > Attachments: Harmony-1205.patch > > > PropertyEditorManager.findEditor(Class targetType) finds PropertyEditor incorrectly > Test---------------------------------------------------------------------------------------------------------- > import java.beans.*; > ------------PropEditorTest.java---------------------- > public class PropEditorTest{ > public static void main(String argv[])throws ClassNotFoundException{ > String path[] = PropertyEditorManager.getEditorSearchPath(); > String newPath[] = new String[path.length + 1]; > newPath[0] = "test"; > for(int i = 0; i < path.length ; i++) newPath[i+1] = path[i]; > PropertyEditorManager.setEditorSearchPath(newPath); > PropertyEditor pe = PropertyEditorManager.findEditor(Class.forName("java.lang.String")); > System.out.println(pe); > pe.setAsText("111"); > System.out.println(pe.getValue()); > } > } > ------------test.StringEditor.java-------------------- > package test; > import java.beans.*; > public class StringEditor extends PropertyEditorSupport{ > public StringEditor(final Object source){ > super(source); > } > > public StringEditor(){ > super(); > } > public void setAsText(String text){ > setValue(text); > } > } > Output---------------------------------------------------------------------------------- > JRockit: > C:\test>%JAVA_HOME%\bin\java -showversion PropEditorTest > java version "1.5.0" > Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0-b64) > BEA WebLogic JRockit(R) (build dra-38972-20041208-2001-win-ia32, R25.0.0-75, GC: > System optimized over throughput (initial strategy singleparpar)) > test.StringEditor@1b4d98 > 111 > Harmony: > C:\test>%JAVA_HOME%\bin\java -showversion PropEditorTest > java version 1.5 (subset) > (c) Copyright 1991, 2006 The Apache Software Foundation or its licensors, as app > licable. > org.apache.harmony.beans.editors.StringEditor@48324832 > Exception in thread "main" java.lang.IllegalArgumentException: 111 > at java.beans.PropertyEditorSupport.setAsText(PropertyEditorSupport.java > :72) > at PropEditorTest.main(PropEditorTest.java:13) > Test after changing order of search---------------------------------------------- > ------------PropEditorTest.java---------------------- > import java.beans.*; > public class PropEditorTest{ > public static void main(String argv[])throws ClassNotFoundException{ > String path[] = PropertyEditorManager.getEditorSearchPath(); > String newPath[] = new String[path.length + 1]; > newPath[path.length] = "test"; > for(int i = 0; i < path.length ; i++) newPath[i] = path[i]; > PropertyEditorManager.setEditorSearchPath(newPath); > PropertyEditor pe = PropertyEditorManager.findEditor(Class.forName("java.lang.String")); > System.out.println(pe); > pe.setAsText("111"); > System.out.println(pe.getValue()); > } > } > Output----------------------------------------------------------------------------------- > JRockit: > C:\test>%JAVA_HOME%\bin\java -showversion PropEditorTest > java version "1.5.0" > Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0-b64) > BEA WebLogic JRockit(R) (build dra-38972-20041208-2001-win-ia32, R25.0.0-75, GC: > System optimized over throughput (initial strategy singleparpar)) > sun.beans.editors.StringEditor@1b49df > 111 > Harmony: > C:\test>%JAVA_HOME%\bin\java -showversion PropEditorTest > java version 1.5 (subset) > (c) Copyright 1991, 2006 The Apache Software Foundation or its licensors, as app > licable. > test.StringEditor@485e485e > 111 -- 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