Guest User

Untitled

a guest
Jan 19th, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. public class FeatureListBox extends ListBox
  2. {
  3. public FeatureListBox()
  4. {
  5. }
  6. public FeatureListBox(boolean isMultipleSelect)
  7. {
  8. super(isMultipleSelect);
  9. }
  10. public FeatureListBox(Element element)
  11. {
  12. super(element);
  13. }
  14. }
  15.  
  16. FeatureListBox listBox = new FeatureListBox();
  17. listBox.addChangeHandler(new ChangeHandler()
  18. {
  19. public void onChange(ChangeEvent event)
  20. {
  21. // Do something here...
  22. }
  23. });
Add Comment
Please, Sign In to add comment