no message

This commit is contained in:
2024-10-20 21:59:39 +03:00
parent 99643aa755
commit fda2940a79
95 changed files with 872 additions and 817 deletions

View File

@@ -73,15 +73,4 @@ public class CompilerEnvironment extends DBObject {
}
}
}
@Override
public Object getFieldAt(int columnIndex) {
switch (columnIndex) {
case 2:
return value;
case 3:
return description;
default:
return null;
}
}
}

View File

@@ -20,6 +20,17 @@ public class CompilerEnvironmentsForm extends DataSetControlForm<CompilerEnviron
};
}
@Override
public Object getFieldAt(CompilerEnvironment object, int columnIndex) {
switch (columnIndex) {
case 2:
return object.value;
case 3:
return object.description;
default:
return null;
}
}
@Override
protected void AdditionalInitColumns() {
columns.get(2).setRendererClass(CompilerEnvironmentValueRenderer.class);
columns.get(2).setEditorClass(CompilerEnvironmentValueEditor.class);