Package com.ibm.xsp.application

Examples of com.ibm.xsp.application.ApplicationEx.createValueBinding()


   */
  protected ValueBinding getValueBinding(final String variable) {
    ValueBinding ret = valueBindings.get(variable);
    if (ret == null) {
      ApplicationEx app = (ApplicationEx) context.getApplication();
      ret = app.createValueBinding("#{" + variable + "}");
      if ((ret instanceof ValueBindingEx)) {
        ValueBindingEx valueEx = (ValueBindingEx) ret;
        valueEx.setComponent(component);
        valueEx.setSourceReferenceId(null); // TODO RPr: What to set here
        valueEx.setExpectedType(Object.class);
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.