Search:

Type: Posts; User: KevinWorkman

Search: Search took 0.08 seconds.

  1. Replies
    12
    Views
    1,231

    Re: List with ArrayList

    What exactly do you think FlowLayout.CENTER is doing?

    Recommended reading: http://docs.oracle.com/javase/tutorial/uiswing/layout/grid.html
  2. Replies
    12
    Views
    1,231

    Re: List with ArrayList

    Your real code might be doing more than this, but note that the code you posted doesn't really need the ArrayList at all.
  3. Replies
    12
    Views
    1,231

    Re: List with ArrayList

    Ah, I see. you've imported java.awt.List, which is an AWT component. It is indeed not generic, hence the error.

    You're looking for java.util.List, which is an interface. It *is* generic.
    ...
  4. Replies
    12
    Views
    1,231

    Re: List with ArrayList

    This code doesn't make a lot of sense. Your buttons variable is a List, so why are you using the array index operator [i] on it?

    Can you show us an MCVE (note: NOT your whole project!) that...
Results 1 to 4 of 4