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 import javax.swing.*;
17
18
19
20
21 public class AddTabExploitRceProgramPostgres extends CreateTabHelper implements InteractionCommand {
22
23
24
25
26 public AddTabExploitRceProgramPostgres(Object[] interactionParams) {
27
28 }
29
30 @Override
31 public void execute() {
32 SwingUtilities.invokeLater(() -> MediatorHelper.tabResults().addTabExploitRceProgramPostgres());
33 }
34 }