aquaballoon

Java - useful functions

Apr 23rd, 2014
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.40 KB | None | 0 0
  1. // exit
  2. this.dispose();
  3.  
  4. // dialog
  5. JOptionPane.showMessageDialog(null, "Hello World");
  6.  
  7. // focusing on the bar
  8. textField.transferFocus();
  9.  
  10. // max / min
  11. int max = Collections.max(Arrays.asList(java, data, cprog, comp));
  12. int min = Collections.min(Arrays.asList(java, data, cprog, comp));
  13.  
  14. // textfield / button turn-off
  15. textfield.setEnabled(false);
  16. textfield.setText("");
  17. button.setEnabled(false);
Advertisement
Add Comment
Please, Sign In to add comment