Merge branch 'dev-1.3' into development
Conflicts: pom.xml
This commit is contained in:
commit
0921b713f5
1 changed files with 8 additions and 4 deletions
|
@ -82,10 +82,14 @@ public final class MultiSelectionCheckbox extends Composite implements Selection
|
|||
WidgetFactory.setARIALabel(button, tuple._2);
|
||||
this.checkboxes.put(tuple._1, button);
|
||||
|
||||
@SuppressWarnings("unchecked")
|
||||
final Tuple3<String> tuple3 = tuple.adaptTo(Tuple3.class);
|
||||
if (tuple3 != null && StringUtils.isNotBlank(tuple3._3)) {
|
||||
button.setToolTipText(tuple3._3);
|
||||
try {
|
||||
@SuppressWarnings("unchecked")
|
||||
final Tuple3<String> tuple3 = tuple.adaptTo(Tuple3.class);
|
||||
if (tuple3 != null && StringUtils.isNotBlank(tuple3._3)) {
|
||||
button.setToolTipText(tuple3._3);
|
||||
}
|
||||
} catch (final Exception e) {
|
||||
// ignore
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue