Return-Path: Delivered-To: apmail-incubator-harmony-commits-archive@www.apache.org Received: (qmail 37239 invoked from network); 9 Nov 2006 06:51:58 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 9 Nov 2006 06:51:58 -0000 Received: (qmail 86110 invoked by uid 500); 9 Nov 2006 06:52:09 -0000 Delivered-To: apmail-incubator-harmony-commits-archive@incubator.apache.org Received: (qmail 86090 invoked by uid 500); 9 Nov 2006 06:52:09 -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 86079 invoked by uid 99); 9 Nov 2006 06:52:09 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 08 Nov 2006 22:52:09 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO brutus.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 08 Nov 2006 22:51:57 -0800 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 1D3537142F7 for ; Wed, 8 Nov 2006 22:51:37 -0800 (PST) Message-ID: <18548257.1163055097116.JavaMail.jira@brutus> Date: Wed, 8 Nov 2006 22:51:37 -0800 (PST) From: "Andrew Zhang (JIRA)" To: harmony-commits@incubator.apache.org Subject: [jira] Created: (HARMONY-2116) [classlib][awt] Toolkit.getDesktopProperties () prints NullPointerException. MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [classlib][awt] Toolkit.getDesktopProperties () prints NullPointerException. ---------------------------------------------------------------------------- Key: HARMONY-2116 URL: http://issues.apache.org/jira/browse/HARMONY-2116 Project: Harmony Issue Type: Bug Components: Classlib Reporter: Andrew Zhang Priority: Minor Harmony java.awt.Toolkit#getDesktopProperties() prints NullPointerException. Following code reproduces the bug: public class ToolkitTest { public static void main(String[] args) { MyToolkit myToolkit = new MyToolkit(); myToolkit.initializeDesktopProperties(); Map props = myToolkit.getDesktopProperties(); } } class MyToolkit extends Toolkit { public Map getDesktopProperties() { return desktopProperties; } public void initializeDesktopProperties() { super.initializeDesktopProperties(); } public void beep() { } public int checkImage(Image arg0, int arg1, int arg2, ImageObserver arg3) { return 0; } protected ButtonPeer createButton(Button arg0) throws HeadlessException { return null; } protected CanvasPeer createCanvas(Canvas arg0) { return null; } protected CheckboxPeer createCheckbox(Checkbox arg0) throws HeadlessException { return null; } protected CheckboxMenuItemPeer createCheckboxMenuItem(CheckboxMenuItem arg0) throws HeadlessException { return null; } protected ChoicePeer createChoice(Choice arg0) throws HeadlessException { return null; } protected DialogPeer createDialog(Dialog arg0) throws HeadlessException { return null; } public DragSourceContextPeer createDragSourceContextPeer(DragGestureEvent arg0) throws InvalidDnDOperationException { return null; } protected FileDialogPeer createFileDialog(FileDialog arg0) throws HeadlessException { return null; } protected FramePeer createFrame(Frame arg0) throws HeadlessException { return null; } public Image createImage(String arg0) { return null; } public Image createImage(URL arg0) { return null; } public Image createImage(ImageProducer arg0) { return null; } public Image createImage(byte[] arg0, int arg1, int arg2) { return null; } protected LabelPeer createLabel(Label arg0) throws HeadlessException { return null; } protected ListPeer createList(List arg0) throws HeadlessException { return null; } protected MenuPeer createMenu(Menu arg0) throws HeadlessException { return null; } protected MenuBarPeer createMenuBar(MenuBar arg0) throws HeadlessException { return null; } protected MenuItemPeer createMenuItem(MenuItem arg0) throws HeadlessException { return null; } protected PanelPeer createPanel(Panel arg0) { return null; } protected PopupMenuPeer createPopupMenu(PopupMenu arg0) throws HeadlessException { return null; } protected ScrollPanePeer createScrollPane(ScrollPane arg0) throws HeadlessException { return null; } protected ScrollbarPeer createScrollbar(Scrollbar arg0) throws HeadlessException { return null; } protected TextAreaPeer createTextArea(TextArea arg0) throws HeadlessException { return null; } protected TextFieldPeer createTextField(TextField arg0) throws HeadlessException { return null; } protected WindowPeer createWindow(Window arg0) throws HeadlessException { return null; } public ColorModel getColorModel() throws HeadlessException { return null; } public String[] getFontList() { return null; } public FontMetrics getFontMetrics(Font arg0) { return null; } protected FontPeer getFontPeer(String arg0, int arg1) { return null; } public Image getImage(String arg0) { return null; } public Image getImage(URL arg0) { return null; } public PrintJob getPrintJob(Frame arg0, String arg1, Properties arg2) { return null; } public int getScreenResolution() throws HeadlessException { return 0; } public Dimension getScreenSize() throws HeadlessException { return null; } public Clipboard getSystemClipboard() throws HeadlessException { return null; } protected EventQueue getSystemEventQueueImpl() { return null; } public Map mapInputMethodHighlight(InputMethodHighlight arg0) throws HeadlessException { return null; } public boolean prepareImage(Image arg0, int arg1, int arg2, ImageObserver arg3) { return false; } public void sync() { } } -- 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