use of net.sourceforge.processdash.ui.OptionList in project processdash by dtuma.
the class DataNameSelectElem method init.
protected void init() {
DataRepository data = getDataRepository();
if (data == null)
return;
TreeSet s = new TreeSet(DataComboBox.getAllDataNames(data));
s.add("");
OptionList opt = new OptionList(s);
String html = opt.getAsHTML(BIZZARE_NAME);
int pos = html.indexOf(BIZZARE_NAME);
initialPart = html.substring(0, pos);
finalPart = html.substring(pos + BIZZARE_NAME.length());
}
Aggregations