no message

This commit is contained in:
2024-10-22 17:27:41 +03:00
parent a60fd375d0
commit a0ceafff0a
57 changed files with 319 additions and 323 deletions

View File

@@ -22,19 +22,19 @@ public class GroupsForm extends DataSetControlForm<Group> {
super(dataSource_in, mountPanel_in);
}
@Override
public Current CurrentName() {
protected Current CurrentName() {
return Current.Group;
}
@Override
public String getSingleDescription() {
protected String getSingleDescription() {
return "группа тестов";
}
@Override
public String getPluralDescription() {
protected String getPluralDescription() {
return "группы";
}
@Override
public boolean hasCheckBox() {
protected boolean hasCheckBox() {
return true;
}
@Override
@@ -112,7 +112,7 @@ public class GroupsForm extends DataSetControlForm<Group> {
});
}
@Override
public DBObjectDialog getDialog() {
protected DBObjectDialog getDialog() {
return new GroupDialog();
}
}

View File

@@ -14,19 +14,19 @@ public class TestsForm extends DataSetControlForm<Test> {
super(dataSource_in, mountPanel_in);
}
@Override
public Current CurrentName() {
protected Current CurrentName() {
return Current.Test;
}
@Override
public String getSingleDescription() {
protected String getSingleDescription() {
return "тест";
}
@Override
public String getPluralDescription() {
protected String getPluralDescription() {
return "тесты";
}
@Override
public boolean hasCheckBox() {
protected boolean hasCheckBox() {
return true;
}
@Override
@@ -70,7 +70,7 @@ public class TestsForm extends DataSetControlForm<Test> {
return super.isObjectVisible(object) && MainModule_.instance.matchCurrentID(Current.Group, object.group_id);
}
@Override
public DBObjectDialog getDialog() {
protected DBObjectDialog getDialog() {
return new TestDialog();
}
};