Package org.springframework.binding.value.support

Examples of org.springframework.binding.value.support.MethodInvokingDerivedValueModel


  public ValueModel addMethod(String propertyMethodName, String[] derivedFromProperties) {
    ValueModel[] propertyValueModels = new ValueModel[derivedFromProperties.length];
    for (int i = 0; i < propertyValueModels.length; i++) {
      propertyValueModels[i] = getValueModel(derivedFromProperties[i]);
    }
    ValueModel valueModel = new MethodInvokingDerivedValueModel(this, propertyMethodName, propertyValueModels);
    return add(propertyMethodName, valueModel);
  }
View Full Code Here

TOP

Related Classes of org.springframework.binding.value.support.MethodInvokingDerivedValueModel

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.