cbateman | d720955 | 2006-12-05 18:37:37 +0000 | [diff] [blame^] | 1 | package com.test; |
2 | |||||
3 | import java.util.AbstractList; | ||||
4 | |||||
5 | /** | ||||
6 | * A bean class that implements java.util.List | ||||
7 | * | ||||
8 | * @author cbateman | ||||
9 | * | ||||
10 | */ | ||||
11 | public class ListBean extends AbstractList | ||||
12 | { | ||||
13 | public Object get(int index) { | ||||
14 | return null; | ||||
15 | } | ||||
16 | |||||
17 | public int size() { | ||||
18 | return 0; | ||||
19 | } | ||||
20 | |||||
21 | /** | ||||
22 | * Simulate a | ||||
23 | * @return | ||||
24 | */ | ||||
25 | public String getStringProperty() | ||||
26 | { | ||||
27 | return ""; | ||||
28 | } | ||||
29 | } |