Last change
on this file since 345 was 1, checked in by Wouter Pasman, 6 years ago |
Initial import : Genius 9.0.0
|
File size:
513 bytes
|
Line | |
---|
1 | package genius.gui.session;
|
---|
2 |
|
---|
3 | import genius.gui.panels.BooleanModel;
|
---|
4 | import genius.gui.panels.CheckboxPanel;
|
---|
5 | import genius.gui.panels.VflowPanelWithBorder;
|
---|
6 |
|
---|
7 | @SuppressWarnings("serial")
|
---|
8 | public class BilateralOptionsPanel extends VflowPanelWithBorder {
|
---|
9 |
|
---|
10 | public BilateralOptionsPanel(BooleanModel utilutilplotModel, BooleanModel showallBidsModel) {
|
---|
11 | super("Bilateral options");
|
---|
12 |
|
---|
13 | add(new CheckboxPanel("Show Util-Util Graph", utilutilplotModel));
|
---|
14 | add(new CheckboxPanel("Show all bids", showallBidsModel));
|
---|
15 | }
|
---|
16 |
|
---|
17 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.