Examples of ValueBinding


Examples of javax.faces.el.ValueBinding

    {
        if (null != this.styleClass)
        {
            return this.styleClass;
        }
        ValueBinding binding = getValueBinding("styleClass");
        if (binding != null)
        {
            return (java.lang.String)binding.getValue(getFacesContext());
        }
        return null;
    }
View Full Code Here

Examples of javax.faces.el.ValueBinding

    {
        if (null != this.styleFrame)
        {
            return this.styleFrame;
        }
        ValueBinding binding = getValueBinding("styleFrame");
        if (binding != null)
        {
            return (java.lang.String)binding.getValue(getFacesContext());
        }
        return null;
    }
View Full Code Here

Examples of javax.faces.el.ValueBinding

    {
        if (null != this.styleClassFrame)
        {
            return this.styleClassFrame;
        }
        ValueBinding binding = getValueBinding("styleClassFrame");
        if (binding != null)
        {
            return (java.lang.String)binding.getValue(getFacesContext());
        }
        return null;
    }
View Full Code Here

Examples of javax.faces.el.ValueBinding

    {
        if (null != this.absolute)
        {
            return this.absolute;
        }
        ValueBinding binding = getValueBinding("absolute");
        if (binding != null)
        {
            return (java.lang.String)binding.getValue(getFacesContext());
        }
        return null;
    }
View Full Code Here

Examples of javax.faces.el.ValueBinding

    {
        if (null != this.center)
        {
            return this.center;
        }
        ValueBinding binding = getValueBinding("center");
        if (binding != null)
        {
            return (java.lang.String)binding.getValue(getFacesContext());
        }
        return null;
    }
View Full Code Here

Examples of javax.faces.el.ValueBinding

    {
        if (null != this.immediate)
        {
            return this.immediate;
        }
        ValueBinding binding = getValueBinding("immediate");
        if (binding != null)
        {
            return (java.lang.String)binding.getValue(getFacesContext());
        }
        return null;
    }
View Full Code Here

Examples of javax.faces.el.ValueBinding

    {
        if (null != this.scrolling)
        {
            return this.scrolling;
        }
        ValueBinding binding = getValueBinding("scrolling");
        if (binding != null)
        {
            return (java.lang.String)binding.getValue(getFacesContext());
        }
        return null;
    }
View Full Code Here

Examples of javax.faces.el.ValueBinding

     *
     * @param value the value from which to update the model.
     */
    public void updateModelValue(final Object value)
    {
        final ValueBinding binding = getValueBinding(VALUE);
        if (binding != null)
        {
            binding.setValue(
                this.getFacesContext(),
                value);
        }
    }
View Full Code Here

Examples of javax.faces.el.ValueBinding

     * @return the binding type or null if the binding wasn't found.
     */
    private Class getBindingType(final String name)
    {
        Class type = null;
        ValueBinding binding = getValueBinding(name);
        if (binding != null)
        {
            final FacesContext context = this.getFacesContext();
            type = binding.getType(context);
        }
        return type;
    }
View Full Code Here

Examples of javax.faces.el.ValueBinding

     */
    protected Object getBackingValue()
    {
        if (this.backingValue == null)
        {
            final ValueBinding binding = this.getValueBinding(BACKING_VALUE);
            this.backingValue = binding == null ? null : binding.getValue(getFacesContext());
        }
        return this.backingValue;
    }
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.