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