|
@@ -177,15 +177,16 @@ public class SimulationConfigurator extends JFrame implements Observer{
|
|
JButton btnEditAlgorithms = new JButton("Edit Algorithms");
|
|
JButton btnEditAlgorithms = new JButton("Edit Algorithms");
|
|
btnEditAlgorithms.setBounds(250, 100, 180, 20);
|
|
btnEditAlgorithms.setBounds(250, 100, 180, 20);
|
|
getContentPane().add(btnEditAlgorithms);
|
|
getContentPane().add(btnEditAlgorithms);
|
|
|
|
+ btnEditAlgorithms.setToolTipText("Edit which user defined algorithms should run during the simulation.");
|
|
btnEditAlgorithms.addActionListener(a->{
|
|
btnEditAlgorithms.addActionListener(a->{
|
|
new EditAlgorithmsPopUp(controller, that);
|
|
new EditAlgorithmsPopUp(controller, that);
|
|
});
|
|
});
|
|
|
|
|
|
- chckbxPrintpackets = new JCheckBox("print Packets");
|
|
|
|
|
|
+ chckbxPrintpackets = new JCheckBox("Save packets");
|
|
chckbxPrintpackets.setBounds(10, 130, 120, 20);
|
|
chckbxPrintpackets.setBounds(10, 130, 120, 20);
|
|
getContentPane().add(chckbxPrintpackets);
|
|
getContentPane().add(chckbxPrintpackets);
|
|
chckbxPrintpackets
|
|
chckbxPrintpackets
|
|
- .setToolTipText("Print Packets as human readable String to testPackets.log in the projekt folder.");
|
|
|
|
|
|
+ .setToolTipText("Save packets as human readable Strings to the configured File");
|
|
|
|
|
|
chckbxSplitLinks = new JCheckBox("Split Links");
|
|
chckbxSplitLinks = new JCheckBox("Split Links");
|
|
chckbxSplitLinks.setBounds(130, 130, 100, 20);
|
|
chckbxSplitLinks.setBounds(130, 130, 100, 20);
|