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

@@ -25,15 +25,15 @@ public class ProjectArraysForm extends DataSetControlForm<ProjectArray> {
}
//--
@Override
public Current CurrentName() {
protected Current CurrentName() {
return Current.ProjectArray;
}
@Override
public String getSingleDescription() {
protected String getSingleDescription() {
return "массив";
}
@Override
public String getPluralDescription() {
protected String getPluralDescription() {
return "объявленные массивы";
}
@Override
@@ -48,7 +48,7 @@ public class ProjectArraysForm extends DataSetControlForm<ProjectArray> {
};
}
@Override
public boolean hasCheckBox() {
protected boolean hasCheckBox() {
return true;
}
@Override

View File

@@ -12,15 +12,15 @@ public class ParallelRegionsForm extends DataSetControlForm<ParallelRegion> {
super(dataSource_in, mountPanel_in);
}
@Override
public Current CurrentName() {
protected Current CurrentName() {
return Current.ParallelRegionInfo;
}
@Override
public String getSingleDescription() {
protected String getSingleDescription() {
return "область распараллеливания";
}
@Override
public String getPluralDescription() {
protected String getPluralDescription() {
return "области распараллеливания";
}
@Override

View File

@@ -15,15 +15,15 @@ public class ParallelVariantsForm extends DataSetControlForm<ParallelVariant> {
super(dataSource_in, mountPanel_in);
}
@Override
public Current CurrentName() {
protected Current CurrentName() {
return Current.ParallelVariant;
}
@Override
public String getPluralDescription() {
protected String getPluralDescription() {
return "варианты";
}
@Override
public boolean hasCheckBox() {
protected boolean hasCheckBox() {
return true;
}
@Override