You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Alexei Zakharov (JIRA)" <ji...@apache.org> on 2007/01/30 16:33:33 UTC

[jira] Assigned: (HARMONY-2521) [classlib][swing] j.s.text.JTextPane.updateUI() throws NPE

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

Alexei Zakharov reassigned HARMONY-2521:
----------------------------------------

    Assignee: Alexei Zakharov

> [classlib][swing] j.s.text.JTextPane.updateUI() throws NPE
> ----------------------------------------------------------
>
>                 Key: HARMONY-2521
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2521
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Alexey A. Ivanov
>         Assigned To: Alexei Zakharov
>         Attachments: Harmony-2521-BasicTextPaneUI.patch, Harmony-2521-BasicTextUI.patch, Harmony-2521-BasicTextUITest.patch
>
>
> import javax.swing.JTextPane;
> public class Test {
>     public static void main(String[] args) {
>         new JTextPane().updateUI();
>         System.out.println("passed OK");
>     }
> }
> This simple code causes NPE on Harmony:
> Exception in thread "main" java.lang.NullPointerException
> 	at java.util.Hashtable.put(Hashtable.java:698)
> 	at javax.swing.text.SimpleAttributeSet.addAttribute(SimpleAttributeSet.java:50)
> 	at javax.swing.text.StyleContext.addAttribute(StyleContext.java:477)
> 	at javax.swing.text.StyleContext$NamedStyle.addAttribute(StyleContext.java:77)
> 	at javax.swing.plaf.basic.BasicTextPaneUI.propertyChange(BasicTextPaneUI.java:52)
> 	at javax.swing.plaf.basic.BasicTextUI$Listener.propertyChange(BasicTextUI.java:32)
> 	at java.beans.PropertyChangeSupport.doFirePropertyChange(PropertyChangeSupport.java:334)
> 	at java.beans.PropertyChangeSupport.firePropertyChange(PropertyChangeSupport.java:59)
> 	at java.awt.Component.firePropertyChangeImpl(Component.java:1666)
> 	at java.awt.Component.firePropertyChange(Component.java:1680)
> 	at java.awt.Component.setForeground(Component.java:322)
> 	at javax.swing.plaf.basic.BasicTextUI.uninstallDefaults(BasicTextUI.java:866)
> 	at javax.swing.plaf.basic.BasicTextUI.uninstallUI(BasicTextUI.java:929)
> 	at javax.swing.JComponent.setUI(JComponent.java:1273)
> 	at javax.swing.text.JTextComponent.updateUI(JTextComponent.java:1587)
> 	at Test.main(Test.java:5)
> The code runs without any errors on RI.

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