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

@@ -20,6 +20,9 @@ public class GroupsForm extends DataSetControlForm<Group> {
public static boolean filterMyOnly = false;
public GroupsForm(DataSet<?, Group> dataSource_in, JPanel mountPanel_in) {
super(dataSource_in, mountPanel_in);
}
@Override
protected void createColumns() {
AddColumns(
new ColumnInfo<Group>("имя") {
@Override

View File

@@ -13,6 +13,9 @@ import javax.swing.*;
public class TestsForm extends DataSetControlForm<Test> {
public TestsForm(DataSet<?, Test> dataSource_in, JPanel mountPanel_in) {
super(dataSource_in, mountPanel_in);
}
@Override
protected void createColumns() {
AddColumns(
new ColumnInfo<Test>("имя") {
@Override