- for (final PreconizationCustomerOverviewProxy data : value) {
- Label l = new Label();
- DOM.setStyleAttribute(l.getElement(), "color", "#C8620D");
- DOM.setStyleAttribute(l.getElement(), "text-decoration", "underline");
- DOM.setStyleAttribute(l.getElement(), "display", "inline-block");
- l.setText(data.getName());
- panel.add(l);
- visualLinkToPrecoData.put(l.getElement().toString(), data);
- }