Bug 466798 - Designer can't handle inner class in POJO dataset - throws ClassNotFoundException
Summary: Designer can't handle inner class in POJO dataset - throws ClassNotFoundExcep...
Status: NEW
Alias: None
Product: z_Archived
Classification: Eclipse Foundation
Component: BIRT (show other bugs)
Version: 4.4.1   Edit
Hardware: PC Linux
: P3 normal (vote)
Target Milestone: ---   Edit
Assignee: Birt-ReportDesigner CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2015-05-08 00:31 EDT by Itai Shaked CLA
Modified: 2016-03-31 02:25 EDT (History)
2 users (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Itai Shaked CLA 2015-05-08 00:31:24 EDT
Using the following example code:

public class A 
{
	public int getInt() 
	{
		return 0;
	}

	public class B
	{
		public int getK()
		{
			return 1;
		}
	}
}

trying to create a POJO dataset of B yields a ClassNotFoundException, making it impossible to use inner classes as POJO datasets.