blob: e47447b7fca25123b89a68143b550b0f6f6127a5 (
plain)
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
|
/*
@VaadinApache2LicenseForJavaFiles@
*/
/**
*
*/
package com.vaadin.terminal.gwt.client.ui.dd;
import com.vaadin.terminal.gwt.client.UIDL;
/**
*
*/
final public class VOr extends VAcceptCriterion implements VAcceptCallback {
private boolean accepted;
@Override
public void accept(VDragEvent drag, UIDL configuration,
VAcceptCallback callback) {
int childCount = configuration.getChildCount();
accepted = false;
for (int i = 0; i < childCount; i++) {
VAcceptCriterion crit = VAnd.getCriteria(drag, configuration, i);
crit.accept(drag, configuration.getChildUIDL(i), this);
if (accepted == true) {
callback.accepted(drag);
return;
}
}
}
@Override
public boolean needsServerSideCheck(VDragEvent drag, UIDL criterioUIDL) {
return false;
}
@Override
protected boolean accept(VDragEvent drag, UIDL configuration) {
return false; // not used here
}
public void accepted(VDragEvent event) {
accepted = true;
}
}
|