FlowPanel labelledEditorPanel = new FlowPanel();
labelledEditorPanel.addStyleName("web-protege-form-layout-labelled-editor");
editorGroupForm.add(labelledEditorPanel);
WebProtegeFormLabel editorLabel = new WebProtegeFormLabel(termEditor.getLabel(i));
editorLabel.addStyleName("web-protege-form-layout-label");
labelledEditorPanel.add(editorLabel);
FlowPanel editorPanel = new FlowPanel();
Widget widget = termEditor.getEditorWidget(i);
widget.addStyleName("web-protege-form-layout-editor-input");
editorPanel.add(widget);