Package org.eobjects.analyzer.beans.api

Examples of org.eobjects.analyzer.beans.api.StringProperty


  @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);
    }
View Full Code Here

TOP

Related Classes of org.eobjects.analyzer.beans.api.StringProperty

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.