перенос метода получающего поле объекта для отображения

This commit is contained in:
2024-10-20 13:34:38 +03:00
parent dc53ecd6c8
commit f13a9cda2e
76 changed files with 721 additions and 612 deletions

View File

@@ -16,4 +16,15 @@ public class SapforProfileSetting extends iDBObject {
public boolean isVisible() {
return Global.mainModule.matchCurrentID(Current.SapforProfile, sapforprofile_id);
}
@Override
public Object getFieldAt( int columnIndex) {
switch (columnIndex) {
case 1:
return name.getDescription();
case 2:
return value;
default:
return null;
}
}
}