Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

(2b) define column identifiers:

Code Block
languagejava
collapsetrue
private static final String ID = "id";
private static final String LABEL = "label";
private static final String CODE = "code";

private static final String[] COLUMN_IDS = { ID, LABEL, CODE };

...
 
@Override
protected String[] getColumnIds() {
    return COLUMN_IDS;
}

...