Label stateAcronymLabel = new Label(dialog, SWT.NONE);
stateAcronymLabel.setText("UF: ");
stateAcronymCombo = new Combo(dialog, SWT.BORDER | SWT.READ_ONLY);
try {
List<State> states = (List<State>) system.query(new GetStatesList());
for (State state : states) {
stateAcronymCombo.add(state.getAcronym());
}
stateAcronymCombo.select(25);
} catch (Exception e) {