Сданная лаба 4 хард, требуется чистка
This commit is contained in:
parent
2d621bbe70
commit
dbfe33b361
@ -293,6 +293,9 @@ public class FormMapWithSetLocomotives extends JComponent {
|
|||||||
//первой лабораторной), передавая туда элемент из коллекции
|
//первой лабораторной), передавая туда элемент из коллекции
|
||||||
//удаленных, если там есть
|
//удаленных, если там есть
|
||||||
DrawningObjectLocomotive locomotive = _mapsCollection.Get(listBoxMaps.getSelectedValue().toString()).getDeleted();
|
DrawningObjectLocomotive locomotive = _mapsCollection.Get(listBoxMaps.getSelectedValue().toString()).getDeleted();
|
||||||
|
if (locomotive == null) {
|
||||||
|
JOptionPane.showMessageDialog(null, "No deleted objects");
|
||||||
|
}
|
||||||
if (locomotive != null) {
|
if (locomotive != null) {
|
||||||
JDialog dialog = new JDialog(formFrame, "Deleted", true);
|
JDialog dialog = new JDialog(formFrame, "Deleted", true);
|
||||||
FormLocomotive formLocomotive = new FormLocomotive(dialog);
|
FormLocomotive formLocomotive = new FormLocomotive(dialog);
|
||||||
|
@ -48,7 +48,7 @@ public class MapWithSetLocomotivesGeneric
|
|||||||
{
|
{
|
||||||
T temp = this._setLocomotives.Remove(position);
|
T temp = this._setLocomotives.Remove(position);
|
||||||
if (temp == null) return null;
|
if (temp == null) return null;
|
||||||
if (temp instanceof DrawningObjectLocomotive) deletedLocomotives.add((DrawningObjectLocomotive) temp);
|
deletedLocomotives.add((DrawningObjectLocomotive) temp);
|
||||||
return temp;
|
return temp;
|
||||||
}
|
}
|
||||||
/// Вывод всего набора объектов
|
/// Вывод всего набора объектов
|
||||||
|
Loading…
Reference in New Issue
Block a user