source: src/main/java/genius/gui/tournamentvars/SingleStringVarUI.java@ 126

Last change on this file since 126 was 126, checked in by Aron Hammond, 6 years ago

Added function to calculate opposition to MultiLateralAnalysis.java

Moved code to add RLBOA listeners to RLBOAUtils is misc package

Added input for strategyParameters to SessionPanel (gui)

!! close SessionInfo after tournament; this caused /tmp/ to fill up with GeniusData files

Our own package:

  • Added opponents and strategies that are mentioned in the report
  • Change class hierarchy, agents can now extend from RLBOAagentBilateral to inherit RL functionality.
  • States extend from AbstractState
File size: 715 bytes
Line 
1package genius.gui.tournamentvars;
2
3import java.awt.Frame;
4import java.awt.Panel;
5
6import javax.swing.BoxLayout;
7import javax.swing.JTextField;
8
9import genius.gui.panels.DefaultOKCancelDialog;
10
11public class SingleStringVarUI extends DefaultOKCancelDialog
12{
13 private static final long serialVersionUID = -6935071049618754059L;
14 private JTextField textField;
15
16 public SingleStringVarUI(Frame frame) {
17 super(frame, "Number of sessions");
18 }
19
20 @Override
21 public Panel getPanel() {
22 textField = new JTextField();
23 Panel panel = new Panel();
24 panel.setLayout(new BoxLayout(panel,BoxLayout.Y_AXIS));
25 panel.add(textField);
26 return panel;
27
28 }
29
30 @Override
31 public Object ok() {
32 return textField.getText();
33 }
34
35}
Note: See TracBrowser for help on using the repository browser.