no message
This commit is contained in:
@@ -11,12 +11,6 @@ public class CompilerOptionsSet extends DataSet<String, CompilerOption> {
|
||||
super(String.class, CompilerOption.class);
|
||||
}
|
||||
@Override
|
||||
public String[] getUIColumnNames() {
|
||||
return new String[]{
|
||||
"Параметр", "Значение", "Описание"
|
||||
};
|
||||
}
|
||||
@Override
|
||||
public Object getFieldAt(CompilerOption object, int columnIndex) {
|
||||
switch (columnIndex) {
|
||||
case 2:
|
||||
@@ -37,6 +31,14 @@ public class CompilerOptionsSet extends DataSet<String, CompilerOption> {
|
||||
return true;
|
||||
}
|
||||
@Override
|
||||
public String[] getUIColumnNames() {
|
||||
return new String[]{
|
||||
"Параметр",
|
||||
"Значение",
|
||||
"Описание"
|
||||
};
|
||||
}
|
||||
@Override
|
||||
protected void AdditionalInitColumns() {
|
||||
columns.get(2).setRendererClass(CompilerOptionParameterNameRenderer.class);
|
||||
columns.get(3).setRendererClass(CompilerOptionParameterValueRenderer.class);
|
||||
|
||||
Reference in New Issue
Block a user