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

@@ -31,15 +31,15 @@ public class BugReportsForm extends DataSetControlForm<BugReport> {
}
//--
@Override
public Current CurrentName() {
protected Current CurrentName() {
return Current.BugReport;
}
@Override
public String getSingleDescription() {
protected String getSingleDescription() {
return "отчёт об ошибке";
}
@Override
public String getPluralDescription() {
protected String getPluralDescription() {
return "отчёты об ошибках";
}
@Override
@@ -55,12 +55,12 @@ public class BugReportsForm extends DataSetControlForm<BugReport> {
"Статус"};
}
@Override
public void ShowCurrentObject() throws Exception {
protected void ShowCurrentObject() throws Exception {
super.ShowCurrentObject();
Global.mainModule.getUI().getMainWindow().getCallbackWindow().ShowCurrentBugReport();
}
@Override
public void ShowNoCurrentObject() throws Exception {
protected void ShowNoCurrentObject() throws Exception {
super.ShowNoCurrentObject();
Global.mainModule.getUI().getMainWindow().getCallbackWindow().ShowNoCurrentBugReport();
}
@@ -73,7 +73,7 @@ public class BugReportsForm extends DataSetControlForm<BugReport> {
columns.get(8).setRendererClass(RendererStatusEnum.class);
}
@Override
public void MouseAction2() throws Exception {
protected void MouseAction2() throws Exception {
Global.mainModule.getPass(PassCode.OpenBugReportTestProject).Do();
}
@Override

View File

@@ -19,19 +19,19 @@ public class ComponentsForm extends DataSetControlForm<Component> {
super(dataSource_in, mountPanel_in);
}
@Override
public Current CurrentName() {
protected Current CurrentName() {
return Current.Component;
}
@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

View File

@@ -13,15 +13,15 @@ public class SubscriberWorkspacesForm extends DataSetControlForm<SubscriberWorks
super(dataSource_in, mountPanel_in);
}
@Override
public Current CurrentName() {
protected Current CurrentName() {
return Current.SubscriberWorkspace;
}
@Override
public String getSingleDescription() {
protected String getSingleDescription() {
return "рабочая папка";
}
@Override
public String getPluralDescription() {
protected String getPluralDescription() {
return "рабочие папки";
}
@Override

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();
}
}