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

@@ -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;
}
};