Bug 278042 - [ErrorHandling] Misleading $classname cannot be found
Summary: [ErrorHandling] Misleading $classname cannot be found
Status: RESOLVED NOT_ECLIPSE
Alias: None
Product: Platform
Classification: Eclipse Project
Component: IDE (show other bugs)
Version: 3.4.2   Edit
Hardware: PC Windows Vista
: P3 normal (vote)
Target Milestone: ---   Edit
Assignee: Platform-UI-Inbox CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2009-05-27 09:20 EDT by Jonathan Camilleri CLA
Modified: 2009-10-01 09:36 EDT (History)
0 users

See Also:


Attachments
Source code (2.00 KB, application/octet-stream)
2009-05-27 09:20 EDT, Jonathan Camilleri CLA
no flags Details
Demo (250.04 KB, application/octet-stream)
2009-05-27 09:21 EDT, Jonathan Camilleri CLA
no flags Details
Source code (2.00 KB, application/octet-stream)
2009-05-27 09:23 EDT, Jonathan Camilleri CLA
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description Jonathan Camilleri CLA 2009-05-27 09:20:22 EDT
Created attachment 137320 [details]
Source code

Build ID: Build id: M20090211-1700

Steps To Reproduce:
In this file I am calling class FontFrame, however, somehow I am getting an error message (follow through), however the class name is within the same package.

package homenetwork.bkr.training;
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;

public class GridBagLayoutTest {

	public static void main (String[] args)
	{
		EventQueue.invokeLater(new Runnable()
		{
			public void run()
			{
				FontFrame = new FontFrame();
//Error: FontFrame cannot be resolved
				frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
				frame.setVisible(true);
			}
		});
	}
}


More information:
NOTE 1: 
Microsoft Windows [Version 6.0.6001]
Copyright (c) 2006 Microsoft Corporation.  All rights reserved.

C:\Users\Administrator>java -version
java version "1.6.0_13"
Java(TM) SE Runtime Environment (build 1.6.0_13-b03)
Java HotSpot(TM) Client VM (build 11.3-b02, mixed mode, sharing)
Comment 1 Jonathan Camilleri CLA 2009-05-27 09:21:05 EDT
Created attachment 137321 [details]
Demo
Comment 2 Jonathan Camilleri CLA 2009-05-27 09:22:40 EDT
Comment on attachment 137320 [details]
Source code

ignore please
Comment 3 Jonathan Camilleri CLA 2009-05-27 09:23:54 EDT
Created attachment 137323 [details]
Source code
Comment 4 Jonathan Camilleri CLA 2009-05-27 09:49:45 EDT
typo