Examples of SerializableRuntimeBeanReference


Examples of org.springframework.ide.eclipse.beans.core.internal.model.SerializableRuntimeBeanReference

  public void setBeanProperties(Set<IBeanProperty> properties) {
    beanProperties = new LinkedHashSet<PropertyValue>();
    for (IBeanProperty property : properties) {
      if (property.getValue() instanceof IBeanReference) {
        IBeanReference reference = (IBeanReference) property.getValue();
        SerializableRuntimeBeanReference rbr = new SerializableRuntimeBeanReference();
        rbr.setBeanName(reference.getBeanName());
        rbr.setToParent(false);
        rbr.setSource(property.getElementSourceLocation());
        beanProperties.add(new PropertyValue(property.getElementName(), rbr));
      }
    }
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.