So I have a drop down menu built below:
new Label(shell, SWT.NONE).setText("Bet Type:");
betType = new Combo(shell, SWT.SINGLE | SWT.BORDER);
betType.setItems(new String[] {" ", "NFL", "NBA", "CFB"});
betType.setLayoutData(gridData);
What I want is for when somebody selects one of the dropdown options, a function that I will write later will be called.
I've tried doing things like:
betType.addSelectionListener(new SelectionAdapter()) { ... }
Or:
betType.addSelectionListener(new SelectionListener()) { ... }
Or:
betType.addModifyListener(new ModifyListener()) { ... }
And I keep getting errors saying "Cannot Instantiate the type ModifyListener or SelectionListener" etc. How would one go about correcting this?