Search:

Type: Posts; User: Norm

Search: Search took 0.14 seconds.

  1. Replies
    7
    Views
    2,363

    Re: Extending JFrame + having multiple windows.

    The constructors could be passed args they could use to make unique contents for their windows. Or there could be unique classes for each window. Its up to the programmer.
  2. Replies
    7
    Views
    2,363

    Re: Extending JFrame + having multiple windows.

    Define new classes as needed, not just to have more classes.

    Window is the name of a Java SE class. It will be better if you use a unique name vs one used by Java.





    public static...
  3. Replies
    7
    Views
    2,363

    Re: Extending JFrame + having multiple windows.

    Each instance of the class extending JFrame would have its own window.
    Create a class that extends JFrame, create multiple instances of that class and set them all visible.
    Something like this:...
Results 1 to 3 of 3