no message

This commit is contained in:
2024-10-26 15:14:23 +03:00
parent c3ce2fed96
commit ed37dd2107
38 changed files with 222 additions and 50 deletions

View File

@@ -10,6 +10,9 @@ import javax.swing.*;
public class SapforProfileSettingsForm extends DataSetControlForm<SapforProfileSetting> {
public SapforProfileSettingsForm(DataSet<?, SapforProfileSetting> dataSource_in, JPanel mountPanel_in) {
super(dataSource_in, mountPanel_in);
}
@Override
protected void createColumns() {
AddColumns(
new ColumnInfo<SapforProfileSetting>("имя") {
@Override
@@ -24,13 +27,16 @@ public class SapforProfileSettingsForm extends DataSetControlForm<SapforProfileS
}
}
);
getColumnInfo(0).setVisible(false);
}
@Override
protected boolean hasCheckBox() {
return false;
}
@Override
protected boolean isPKVisible() {
return false;
}
@Override
protected boolean hasMenuBar() {
return false;
}