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