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

@@ -11,15 +11,15 @@ public class DBArraysForm extends DataSetControlForm<DBArray> {
super(dataSource_in, mountPanel_in);
}
@Override
public Current CurrentName() {
protected Current CurrentName() {
return Current.DBArray;
}
@Override
public String getSingleDescription() {
protected String getSingleDescription() {
return "массив";
}
@Override
public String getPluralDescription() {
protected String getPluralDescription() {
return "сохранённые состояния";
}
@Override
@@ -38,7 +38,7 @@ public class DBArraysForm extends DataSetControlForm<DBArray> {
}
}
@Override
public boolean hasCheckBox() {
protected boolean hasCheckBox() {
return true;
}
@Override

View File

@@ -13,7 +13,7 @@ public class ErrorsDBTable extends MessagesDBTable<MessageError> {
protected DataSetControlForm createUI(JPanel mountPanel) {
return new MessagesControlForm(this, mountPanel) {
@Override
public Current CurrentName() {
protected Current CurrentName() {
return Current.Errors;
}
};

View File

@@ -34,7 +34,7 @@ public class MessagesControlForm extends DataSetControlForm<Message> {
}
}
@Override
public void ShowCurrentObject() throws Exception {
protected void ShowCurrentObject() throws Exception {
super.ShowCurrentObject();
Global.mainModule.getFile().form.getEditor().gotoLine(getCurrent().line);
}
@@ -45,7 +45,7 @@ public class MessagesControlForm extends DataSetControlForm<Message> {
columns.get(3).setRendererClass(RendererWrapText.class);
}
@Override
public void MouseAction2() throws Exception {
protected void MouseAction2() throws Exception {
ShowCurrentObject();
}
@Override
@@ -57,7 +57,7 @@ public class MessagesControlForm extends DataSetControlForm<Message> {
return Comparator.comparingInt(o -> o.line);
}
@Override
public boolean hasMenuBar() {
protected boolean hasMenuBar() {
return false;
}
@Override

View File

@@ -13,7 +13,7 @@ public class NotesDBTable extends MessagesDBTable<MessageNote> {
protected DataSetControlForm createUI(JPanel mountPanel) {
return new MessagesControlForm(this, mountPanel) {
@Override
public Current CurrentName() {
protected Current CurrentName() {
return Current.Notes;
}
};

View File

@@ -12,7 +12,7 @@ public class RecommendationsForm extends DataSetControlForm<MessageRecommendatio
super(dataSource_in, mountPanel_in);
}
@Override
public Current CurrentName() {
protected Current CurrentName() {
return Current.Recommendations;
}
@Override
@@ -39,7 +39,7 @@ public class RecommendationsForm extends DataSetControlForm<MessageRecommendatio
AddFilter(new HeaderTextFilter(dataSource, 1, 72));
}
@Override
public boolean hasMenuBar() {
protected boolean hasMenuBar() {
return false;
}
}

View File

@@ -14,7 +14,7 @@ public class WarningsDBTable extends MessagesDBTable<MessageWarning> {
protected DataSetControlForm createUI(JPanel mountPanel) {
return new MessagesControlForm(this, mountPanel) {
@Override
public Current CurrentName() {
protected Current CurrentName() {
return Current.Warnings;
}
};

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