no message

This commit is contained in:
2024-10-17 22:09:18 +03:00
parent c9c8519a10
commit 6b7ed74c60
40 changed files with 398 additions and 316 deletions

View File

@@ -122,6 +122,14 @@ public class CompilersDBTable extends iDBTable<Compiler> {
@Override
protected DataSetControlForm createUI(JPanel mountPanel) {
return new DataSetControlForm(this, mountPanel) {
@Override
public String[] getUIColumnNames() {
return new String[]{
"описание",
"команда вызова",
"версия",
"ревизия"};
}
@Override
protected void AdditionalInitColumns() {
columns.get(0).setVisible(false);
@@ -151,10 +159,6 @@ public class CompilersDBTable extends iDBTable<Compiler> {
};
}
@Override
public String[] getUIColumnNames() {
return new String[]{"описание", "команда вызова", "версия", "ревизия"};
}
@Override
public Object getFieldAt(Compiler object, int columnIndex) {
switch (columnIndex) {
case 2: