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

@@ -11,6 +11,13 @@ public class SapforProfileSettingsDBTable extends iDBTable<SapforProfileSetting>
@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);
@@ -26,13 +33,6 @@ public class SapforProfileSettingsDBTable extends iDBTable<SapforProfileSetting>
return Current.SapforProfileSetting;
}
@Override
public String[] getUIColumnNames() {
return new String[]{
"имя",
"значение"
};
}
@Override
public Object getFieldAt(SapforProfileSetting object, int columnIndex) {
switch (columnIndex) {
case 1: