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

@@ -18,19 +18,19 @@ public class SapforConfigurationsForm extends DataSetControlForm<SapforConfigura
super(dataSource_in, mountPanel_in);
}
@Override
public Current CurrentName() {
protected Current CurrentName() {
return Current.SapforConfiguration;
}
@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
@@ -88,7 +88,7 @@ public class SapforConfigurationsForm extends DataSetControlForm<SapforConfigura
PassCode.StartSelectedSAPFORConfigurations);
}
@Override
public DBObjectDialog getDialog() {
protected DBObjectDialog getDialog() {
return new SapforConfigurationDialog();
}
}

View File

@@ -23,19 +23,19 @@ public class SapforPackagesForm extends DataSetControlForm<SapforPackage> {
super(dataSource_in, mountPanel_in);
}
@Override
public Current CurrentName() {
protected Current CurrentName() {
return Current.SapforPackage;
}
@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
@@ -87,7 +87,7 @@ public class SapforPackagesForm extends DataSetControlForm<SapforPackage> {
columns.get(10).setRendererClass(RendererStatusEnum.class);
}
@Override
public void MouseAction2() throws Exception {
protected void MouseAction2() throws Exception {
Global.mainModule.getPass(PassCode.CompareSapforPackages).Do();
}
@Override

View File

@@ -13,19 +13,19 @@ public class SapforSettingsForm extends DataSetControlForm<SapforSettings> {
super(dataSource_in, mountPanel_in);
}
@Override
public Current CurrentName() {
protected Current CurrentName() {
return Current.SapforSettings;
}
@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
@@ -58,7 +58,7 @@ public class SapforSettingsForm extends DataSetControlForm<SapforSettings> {
PassCode.DeleteSapforSettings);
}
@Override
public DBObjectDialog getDialog() {
protected DBObjectDialog getDialog() {
return new SapforSettingsDialog();
}
}

View File

@@ -14,19 +14,19 @@ public class SapforSettingsCommandsForm extends DataSetControlForm<SapforSetting
super(dataSource_in, mountPanel_in);
}
@Override
public Current CurrentName() {
protected Current CurrentName() {
return Current.SapforSettingsCommand;
}
@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
@@ -56,7 +56,7 @@ public class SapforSettingsCommandsForm extends DataSetControlForm<SapforSetting
return super.isObjectVisible(object) && MainModule_.instance.matchCurrentID(Current.SapforSettings, object.sapforsettings_id);
}
@Override
public DBObjectDialog getDialog() {
protected DBObjectDialog getDialog() {
return new SapforSettingsCommandDialog();
}
}

View File

@@ -16,19 +16,19 @@ public class ServerSapforsForm extends DataSetControlForm<ServerSapfor> {
super(dataSource_in, mountPanel_in);
}
@Override
public Current CurrentName() {
protected Current CurrentName() {
return Current.ServerSapfor;
}
@Override
public String getSingleDescription() {
protected String getSingleDescription() {
return "версия SAPFOR";
}
@Override
public String getPluralDescription() {
protected String getPluralDescription() {
return "версии SAPFOR";
}
@Override
public boolean hasCheckBox() {
protected boolean hasCheckBox() {
return true;
}
@Override
@@ -60,12 +60,12 @@ public class ServerSapforsForm extends DataSetControlForm<ServerSapfor> {
columns.get(5).setRendererClass(RendererStatusEnum.class);
}
@Override
public void ShowCurrentObject() throws Exception {
protected void ShowCurrentObject() throws Exception {
super.ShowCurrentObject();
Global.mainModule.getUI().getMainWindow().getTestingWindow().ShowCurrentServerSapfor();
}
@Override
public void ShowNoCurrentObject() throws Exception {
protected void ShowNoCurrentObject() throws Exception {
super.ShowNoCurrentObject();
Global.mainModule.getUI().getMainWindow().getTestingWindow().ShowNoServerSapfor();
}