Advertisement
Guest User

Untitled

a guest
May 24th, 2015
232
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. private void getPlattform(JComboBox cb) {
  2.  
  3. ArrayList<String> plattform;
  4. plattform = new ArrayList<String>();
  5. try {
  6. plattform = database.fetchColumn("select Benamning from plattform");
  7. } catch (InfException exc) {
  8. JOptionPane.showMessageDialog(null, exc.getMessage());
  9. }
  10. for (String plattformar : plattform) {
  11.  
  12. cb.addItem(plattformar);
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement