Advertisement
Guest User

Untitled

a guest
Jan 18th, 2020
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. public void dodajBoje() {
  2. int[] colors = {Color.red.getRGB(),Color.green.getRGB(),Color.blue.getRGB(),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25};
  3. for (int i = 0; i < listaTrips.size(); i++) {
  4. listaTrips.get(i).setColor(colors[i]);
  5. }
  6. for (Trip t : listaTrips) {
  7. System.out.println("BOJA " + t.getColor());
  8. }
  9.  
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement