You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Alexey Petrenko (JIRA)" <ji...@apache.org> on 2007/02/13 16:26:06 UTC

[jira] Closed: (HARMONY-1605) [classlib][awt]Compatibility: java.awt.Window has null default Font on RI while it hasn't on Harmony

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

Alexey Petrenko closed HARMONY-1605.
------------------------------------

    Resolution: Fixed

The patch has been applied. Please verify.

> [classlib][awt]Compatibility: java.awt.Window has null default Font on RI while it hasn't on Harmony
> ----------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-1605
>                 URL: https://issues.apache.org/jira/browse/HARMONY-1605
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Ilya Okomin
>         Assigned To: Alexey Petrenko
>            Priority: Minor
>         Attachments: HARMONY-1605-ComponentTest.patch, Harmony-1605-test.patch, HARMONY-1605.patch, Harmony-1605.patch
>
>
> If no Font set to java.awt.Window object RI returns null while Harmony returns instanse of Font with default parameters.
> Check the output of the test case:
> --------------test.java--------------
> import java.awt.*;
> public class test{
>     public static void main(String[] args) {
>         Window w = new Window(new Frame());
>         Font f = w.getFont();
>         System.out.println("Window default font: " + f);
>     }
> }
> ----------------------------------------
> ====== Output RI =======
> Window default font : null
> ====== Output Harmony ======
> Window default font : java.awt.Font[family=Default,name=dialog,style=plain,size=12]

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