Skip to main content
summaryrefslogtreecommitdiffstats
blob: d449c2decfdee8572dac4f13b888a6836ec3b942 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
package com.test;

public class BeanWithMapProp
{
	private MapBean		_myBean1;
	
	// test a property of type Map
	public MapBean getMapProp()
	{
		return _myBean1;
	}
}

Back to the top