Search:

Type: Posts; User: Norm

Search: Search took 0.11 seconds.

  1. Re: What's the difference between "import.javax.swing*" and JFrame inheritance

    You do not need to use the import statement to use any of the java classes. You can code the full package/class name:

    public MyFrame extends javax.swing.JFrame { ...}
    The import statement...
  2. Re: What's the difference between "import.javax.swing*" and JFrame inheritance

    JFrame is one class in the javax.swing package.
    Extending a class has nothing to do with what import statements you code.
    An import statement is used by the compiler to find the definition of a...
Results 1 to 2 of 2