Package com.ibm.xsp.binding

Examples of com.ibm.xsp.binding.ValueBindingEx


    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);
      } else if ((ret instanceof ComponentBindingObject)) {
        ((ComponentBindingObject) ret).setComponent(component);
      }
      valueBindings.put(variable, ret);
    }
View Full Code Here

TOP

Related Classes of com.ibm.xsp.binding.ValueBindingEx

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.