You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Sergey Krivenko (JIRA)" <ji...@apache.org> on 2007/01/23 18:52:49 UTC

[jira] Updated: (HARMONY-1768) [classlib][swing]javax.swing.text.DefaultCaret.getSelectionPainter() method returns null

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

Sergey Krivenko updated HARMONY-1768:
-------------------------------------

    Attachment: Harmony-1768-DefaultCaret.patch

The attached is a fix to the bug.

> [classlib][swing]javax.swing.text.DefaultCaret.getSelectionPainter() method returns null
> ----------------------------------------------------------------------------------------
>
>                 Key: HARMONY-1768
>                 URL: https://issues.apache.org/jira/browse/HARMONY-1768
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Svetlana Samoilenko
>            Priority: Minor
>         Attachments: DefaultCaretTest.patch, Harmony-1768-DefaultCaret.patch
>
>
> Description:
> Harmony returns null for DefaultCaret.getSelectionPainter() protected method while RI returns correct object.
> Test for reproducing:
> import junit.framework.TestCase;
> import javax.swing.text.*;
> public class test extends TestCase  {          
>     public void testGetSelectionPainter(){
>        testDefaultCaret obj = new testDefaultCaret();
>        assertNotNull(obj.getSelectionPainter());        
>     }     
> }
> class testDefaultCaret extends DefaultCaret   {  
>     testDefaultCaret() {
>         super();
>     }
>    public  Highlighter.HighlightPainter getSelectionPainter(){
>        return super.getSelectionPainter();  
>    }  
> }
> HARMONY output:
> ==============
> 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 = r450941, (Sep 28 2006), Windows/ia32/msvc 1310, release build
> http://incubator.apache.org/harmony
> .F
> Time: 0.047
> There was 1 failure:
> 1) testGetSelectionPainter(test)junit.framework.AssertionFailedError
>         at test.testGetSelectionPainter(test.java:7)
>         at java.lang.reflect.VMReflection.invokeMethod(VMReflection.java)
> FAILURES!!!
> Tests run: 1,  Failures: 1,  Errors: 0
> SUN output:
> ==========
> java version "1.5.0_06"
> Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_06-b05)
> Java HotSpot(TM) Client VM (build 1.5.0_06-b05, mixed mode)
> .
> Time: 0.01
> OK (1 test)

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.