1
2
3
4
5
6
7
8
9
10
11 package com.jsql.view.swing.interaction;
12
13 import com.jsql.view.interaction.InteractionCommand;
14 import com.jsql.view.swing.util.MediatorHelper;
15
16
17
18
19 public class EndPreparation implements InteractionCommand {
20
21 public EndPreparation(Object[] interactionParams) {
22
23 }
24
25 @Override
26 public void execute() {
27 MediatorHelper.panelAddressBar().getPanelTrailingAddress().endPreparation();
28 if (MediatorHelper.model().shouldErasePreviousInjection()) {
29 MediatorHelper.tabManagersCards().endPreparation();
30 }
31 }
32 }