Guest User

Untitled

a guest
Jul 19th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. /** Listens to the check boxes. */
  2. public void itemStateChanged(ItemEvent e) {
  3. int index = 0;
  4. char c = '-';
  5. Object source = e.getItemSelectable();
  6.  
  7. if (source == squery.first("#chin")) {
  8. index = 0;
  9. c = 'c';
  10. } else if (source == squery.first("#glass")) {
  11. index = 1;
  12. c = 'g';
  13. }
  14.  
  15. // etc
Add Comment
Please, Sign In to add comment