no message
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user