@Inject
public SingleStringPropertyWidget(ConfiguredPropertyDescriptor propertyDescriptor,
AbstractBeanJobBuilder<?, ?, ?> beanJobBuilder) {
super(beanJobBuilder, propertyDescriptor);
StringProperty stringPropertyAnnotation = propertyDescriptor.getAnnotation(StringProperty.class);
_textComponent = getTextComponent(propertyDescriptor, stringPropertyAnnotation);
String currentValue = (String) beanJobBuilder.getConfiguredProperty(propertyDescriptor);
if (currentValue != null) {
_textComponent.setText(currentValue);
}