Esempio n. 1
0
 public WflSelectAllAction(WflContainerControl control, boolean showText) {
   super(name, WflUtil.createImageIcon(WflConstants.ICON_SELECT_ALL));
   this.control = control;
   String n = showText ? "Seleccionar todo" : null;
   init(n);
 }
Esempio n. 2
0
 public WflSelectAllAction(WflContainerControl control, String text) {
   super(name, WflUtil.createImageIcon(WflConstants.ICON_SELECT_ALL));
   this.control = control;
   init(text);
 }