}
initialize();
for (int i = 0, size = _dialogFields.size(); i < size; i++) {
DialogField field = _dialogFields.get(i);
ISupportTextValue textValue = (ISupportTextValue) field;
IPropertyPageDescriptor attr = (IPropertyPageDescriptor) field
.getAttachedData(KEY_ATTR);
String attrName = attr.getAttributeName();
String attrValue = _ownerElement.getAttribute(attrName);
textValue.setTextWithoutUpdate(attrValue);
}
}