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

@@ -16,19 +16,19 @@ public class SubsribersForm extends DataSetControlForm<Subscriber> {
super(dataSource_in, mountPanel_in);
}
@Override
public Current CurrentName() {
protected Current CurrentName() {
return Current.Subscriber;
}
@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
@@ -68,7 +68,7 @@ public class SubsribersForm extends DataSetControlForm<Subscriber> {
PassCode.DeleteSubscriber);
}
@Override
public DBObjectDialog<Subscriber, ? extends DialogFields> getDialog() {
protected DBObjectDialog<Subscriber, ? extends DialogFields> getDialog() {
return new SubscriberDialog();
}
}