Question

enter image description here

It happened when I tried to use a ListSelectionModel.

Did I made some mistake?

Was it helpful?

Solution 2

You typed the statement at the wrong spot:

class X {

    HERE - WHERE THE FIELD DECLARATIONS GO

    X() {
        STATEMENT SHOULD GO HERE
    }

The compiler thinks to deal with a declaration, starting with a class, which may be x.y.z.C.

OTHER TIPS

You need to invoke the statement in a code block such as a method or constructor rather than the class block.

class AdminConsole ... {

    void initComponents() {
       ...
       table.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
       ...
    }
}

Side note: setSelectionMode is undefined for ListSelectionModel - instead it needs to be invoked on the JTable

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top