Zhelovanov D.Y. LabWork03 #3

Closed
Zhelovanov_Dmitrii wants to merge 10 commits from LabWork03 into LabWork02
Showing only changes of commit 79c31bbb8b - Show all commits

View File

@ -54,8 +54,8 @@ public class FormMapWithSetBattleship extends JComponent {
statusPanel.add(mapSelectComboBox);
JButton addAirbusButton = new JButton("Добавить корабль");
addAirbusButton.addActionListener(e -> {
JButton addBattleshipButton = new JButton("Добавить корабль");
addBattleshipButton.addActionListener(e -> {
if (_mapBattleshipsCollectionGeneric == null)
{
@ -77,7 +77,7 @@ public class FormMapWithSetBattleship extends JComponent {
JOptionPane.showMessageDialog(form, "Объект не добавлен", "Добавление", JOptionPane.OK_CANCEL_OPTION);
}
});
statusPanel.add(addAirbusButton);
statusPanel.add(addBattleshipButton);
JFormattedTextField maskedTextFieldPosition = null;
try {