cbateman | e560124 | 2007-04-26 00:23:06 +0000 | [diff] [blame] | 1 | package com.test; |
| 2 | |
| 3 | import java.util.ArrayList; |
| 4 | import java.util.List; |
cbateman | db92dd7 | 2007-05-07 17:29:50 +0000 | [diff] [blame] | 5 | import java.util.Map; |
| 6 | import java.util.HashMap; |
cbateman | e560124 | 2007-04-26 00:23:06 +0000 | [diff] [blame] | 7 | |
| 8 | public class TestBeanGeneric |
| 9 | { |
| 10 | public List<String> getListOfStrings() |
| 11 | { |
| 12 | return new ArrayList<String>(); |
| 13 | } |
| 14 | |
| 15 | public ArrayList<String> getArrayListOfStrings() |
| 16 | { |
| 17 | return new ArrayList<String>(); |
| 18 | } |
cbateman | db92dd7 | 2007-05-07 17:29:50 +0000 | [diff] [blame] | 19 | |
| 20 | public List<List<String>> getListOfListOfStrings() |
| 21 | { |
| 22 | return new ArrayList<List<String>>(); |
| 23 | } |
| 24 | |
| 25 | public Map<String, String> getMapOfString_String() |
| 26 | { |
| 27 | return new HashMap<String, String>(); |
| 28 | } |
cbateman | c1b11a0 | 2007-08-27 18:27:22 +0000 | [diff] [blame] | 29 | |
| 30 | public List<?> getUnboundedList() |
| 31 | { |
| 32 | return new ArrayList<Object>(); |
| 33 | } |
cbateman | e560124 | 2007-04-26 00:23:06 +0000 | [diff] [blame] | 34 | } |