ArrayList<String> L = new ArrayList<String>();
L.add("red");
L.add("blue");
L.add("green");
SROChoice sro = new SROChoice("color", L);
m_sroChoice = sro;
sro.setSampleValue1("red");
sro.setSampleValue2("blue");
sro.setModelVar("city");
if (addConfirmer) {
// qflow.setConfirmer(new ConfYNFlow());
sro.setConfirmer(new SROConfirmYesNo("wine"));
}
flow.add(sro);
flow.addPromptFlow("You said {$INPUT}");
return flow;