1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
|
package com.vaadin.tests.util;
import java.util.Collection;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import com.vaadin.data.Container;
import com.vaadin.data.ContainerHelpers;
import com.vaadin.data.Item;
import com.vaadin.data.Property;
import com.vaadin.data.util.AbstractContainer;
import com.vaadin.data.util.ObjectProperty;
public class LargeContainer extends AbstractContainer implements
Container.Indexed {
public class TestItem implements Item {
private final Object itemId;
public TestItem(Object itemId) {
this.itemId = itemId;
}
@Override
public Property<?> getItemProperty(Object propertyId) {
ObjectProperty<String> property = new ObjectProperty<String>(
containerPropertyIdDefaults.get(propertyId) + " (item "
+ itemId + ")");
return property;
}
@Override
public Collection<?> getItemPropertyIds() {
return getContainerPropertyIds();
}
@Override
@SuppressWarnings("rawtypes")
public boolean addItemProperty(Object id, Property property)
throws UnsupportedOperationException {
throw new UnsupportedOperationException("Cannot add item property");
}
@Override
public boolean removeItemProperty(Object id)
throws UnsupportedOperationException {
throw new UnsupportedOperationException(
"Cannot remove item property");
}
}
private int size = 1000;
private Map<Object, Class<?>> containerPropertyIdTypes = new HashMap<Object, Class<?>>();
private Map<Object, Object> containerPropertyIdDefaults = new HashMap<Object, Object>();
@Override
public Object nextItemId(Object itemId) {
Integer id = (Integer) itemId;
if (id >= size() - 1) {
return null;
}
return (id + 1);
}
@Override
public Object prevItemId(Object itemId) {
Integer id = (Integer) itemId;
if (id <= 0) {
return null;
}
return (id - 1);
}
@Override
public Object firstItemId() {
if (0 == size()) {
return null;
}
return 0;
}
@Override
public Object lastItemId() {
if (0 == size()) {
return null;
}
return (size() - 1);
}
@Override
public boolean isFirstId(Object itemId) {
if (null == itemId) {
return false;
}
return itemId.equals(firstItemId());
}
@Override
public boolean isLastId(Object itemId) {
if (null == itemId) {
return false;
}
return itemId.equals(lastItemId());
}
@Override
public TestItem getItem(Object itemId) {
if (!containsId(itemId)) {
return null;
}
return new TestItem(itemId);
}
@Override
public Collection<?> getItemIds() {
return new RangeCollection(size());
}
@Override
public List<?> getItemIds(int startIndex, int numberOfIds) {
// TODO use a lazy list for better performance
return ContainerHelpers.getItemIdsUsingGetIdByIndex(startIndex,
numberOfIds, this);
}
@Override
public Property<?> getContainerProperty(Object itemId, Object propertyId) {
TestItem item = getItem(itemId);
if (null == item) {
return null;
}
return item.getItemProperty(propertyId);
}
@Override
public int size() {
return size;
}
@Override
public boolean containsId(Object itemId) {
if (!(itemId instanceof Integer)) {
return false;
}
Integer id = (Integer) itemId;
return (id >= 0 && id < (size() - 1));
}
@Override
public int indexOfId(Object itemId) {
if (!containsId(itemId)) {
return -1;
}
return (Integer) itemId;
}
@Override
public Object getIdByIndex(int index) {
return index;
}
public void setSize(int newSize) {
size = newSize;
}
@Override
public boolean removeAllItems() throws UnsupportedOperationException {
setSize(0);
return true;
}
@Override
public Class<?> getType(Object propertyId) {
return containerPropertyIdTypes.get(propertyId);
}
@Override
public Collection<?> getContainerPropertyIds() {
return containerPropertyIdTypes.keySet();
}
@Override
public boolean addContainerProperty(Object propertyId, Class<?> type,
Object defaultValue) throws UnsupportedOperationException {
if (containerPropertyIdTypes.containsKey(propertyId) || null == type) {
return false;
}
containerPropertyIdTypes.put(propertyId, type);
containerPropertyIdDefaults.put(propertyId, defaultValue);
return true;
}
@Override
public boolean removeContainerProperty(Object propertyId)
throws UnsupportedOperationException {
if (!containerPropertyIdTypes.containsKey(propertyId)) {
return false;
}
containerPropertyIdTypes.remove(propertyId);
containerPropertyIdDefaults.remove(propertyId);
return true;
}
@Override
public Item addItem(Object itemId) throws UnsupportedOperationException {
throw new UnsupportedOperationException("Not supported");
}
@Override
public Object addItem() throws UnsupportedOperationException {
throw new UnsupportedOperationException("Not supported");
}
@Override
public boolean removeItem(Object itemId)
throws UnsupportedOperationException {
throw new UnsupportedOperationException("Not supported");
}
@Override
public Object addItemAt(int index) throws UnsupportedOperationException {
throw new UnsupportedOperationException("Not supported");
}
@Override
public Item addItemAt(int index, Object newItemId)
throws UnsupportedOperationException {
throw new UnsupportedOperationException("Not supported");
}
@Override
public Object addItemAfter(Object previousItemId)
throws UnsupportedOperationException {
throw new UnsupportedOperationException("Not supported");
}
@Override
public Item addItemAfter(Object previousItemId, Object newItemId)
throws UnsupportedOperationException {
throw new UnsupportedOperationException("Not supported");
}
}
|