Column colMain = new Column();
colMain.setInsets(new Insets(5, 5));
Iterator<JbsLangEntryHelper> it = this.getTextFields().iterator();
while (it.hasNext()) {
JbsLangEntryTextArea txtField = (JbsLangEntryTextArea) it.next();
txtField.setWidth(new JbsExtent(400, JbsExtent.PX));
txtField.setHeight(new JbsExtent(300, JbsExtent.PX));
colMain.add(new Label(txtField.getLanguage().getName()));
colMain.add(txtField);
}
this.getPnMain().add(colMain);
}