Skip to content
mlabuda edited this page Feb 17, 2014 · 6 revisions

API / Abstract

  • Combo / AbstractCombo

Implementation(s)

  • DefaultCombo

Usage

DefaultCombo

Look up a combo with label "Combo1"

Combo combo = new DefaultCombo("Combo1");

Get current combo selection text

String selectionText = combo.getText(); 

Set combo selection to "Selection1"

combo.setText("Selection1"); 
Clone this wiki locally