◆ CollectionCheckbox() [1/2]
◆ CollectionCheckbox() [2/2]
◆ afterCompose()
◆ clear()
◆ convertToString()
◆ equals()
Definition at line 87 of file CollectionCheckbox.java.
90 return (v1 ==
null && v2 ==
null) ||
91 (v1 !=
null && v1.equals(v2));
◆ getCollection()
◆ getObjectValues()
Definition at line 114 of file CollectionCheckbox.java.
116 return internalValues;
118 HashSet<V>
set =
new HashSet<V>();
120 if(c instanceof Checkbox) {
121 Checkbox cb = (Checkbox) c;
123 set.add((V) cb.getAttribute(
"obj"));
◆ populateList()
Definition at line 70 of file CollectionCheckbox.java.
73 if(collection ==
null)
return;
74 for(V v : collection) {
76 cb.setAttribute(
"obj", v);
78 cb.addEventListener(Events.ON_CHECK,
new EventListener() {
80 public void onEvent(Event event)
throws Exception {
void addComponent(Component comp)
◆ setCollection()
◆ setObjectValues()
Definition at line 96 of file CollectionCheckbox.java.
98 internalValues = collection;
101 if(c instanceof Checkbox) {
102 Checkbox cb = (Checkbox) c;
103 cb.setChecked(
false);
104 for(V v : collection) {
◆ updateCollection() [1/2]
◆ updateCollection() [2/2]
◆ populated
The documentation for this class was generated from the following file: