}
}
protected UITableModelDefault getCommandTable () {
UITableModelDefault dtm = new UITableModelDefault();
dtm.setColumnHeaders("Command", "Description");
dtm.setColumnWidths(25, 50);
List<String> commands = set.getCommandNames();
Collections.sort(commands);
for (String command : commands) {
CommandLineCommand clc = set.createCommand(command);
dtm.addRow(new Object[] { command, clc.getDescription() });
}
return dtm;
}