Class TagAttribute


  • public abstract class TagAttribute
    extends Object
    Representation of a Tag's attribute in a Facelet File
    • Constructor Detail

      • TagAttribute

        public TagAttribute()
    • Method Detail

      • getLocalName

        public abstract String getLocalName()
        Local name of this attribute
        Returns:
        local name of this attribute
      • getLocation

        public abstract Location getLocation()
        The location of this attribute in the FaceletContext
        Returns:
        the TagAttribute's location
      • getMethodExpression

        public abstract javax.el.MethodExpression getMethodExpression​(FaceletContext ctx,
                                                                      Class type,
                                                                      Class[] paramTypes)
        Create a MethodExpression, using this attribute's value as the expression String.
        Parameters:
        ctx - FaceletContext to use
        type - expected return type
        paramTypes - parameter type
        Returns:
        a MethodExpression instance
        See Also:
        ExpressionFactory.createMethodExpression(javax.el.ELContext, java.lang.String, java.lang.Class, java.lang.Class[]), MethodExpression
      • getNamespace

        public abstract String getNamespace()
        The resolved Namespace for this attribute
        Returns:
        resolved Namespace
      • getObject

        public abstract Object getObject​(FaceletContext ctx)
        Delegates to getObject with Object.class as a param
        Parameters:
        ctx - FaceletContext to use
        Returns:
        Object representation of this attribute's value
        See Also:
        getObject(FaceletContext, Class)
      • getObject

        public abstract Object getObject​(FaceletContext ctx,
                                         Class type)
        If literal, simply coerce our String literal value using an ExpressionFactory, otherwise create a ValueExpression and evaluate it.
        Parameters:
        ctx - FaceletContext to use
        type - expected return type
        Returns:
        Object value of this attribute
        See Also:
        ExpressionFactory.coerceToType(java.lang.Object, java.lang.Class), ExpressionFactory.createValueExpression(javax.el.ELContext, java.lang.String, java.lang.Class), ValueExpression
      • getQName

        public abstract String getQName()
        The qualified name for this attribute
        Returns:
        the qualified name for this attribute
      • getValue

        public abstract String getValue()
        Return the literal value of this attribute
        Returns:
        literal value
      • getValue

        public abstract String getValue​(FaceletContext ctx)
        If literal, then return our value, otherwise delegate to getObject, passing String.class.
        Parameters:
        ctx - FaceletContext to use
        Returns:
        String value of this attribute
        See Also:
        getObject(FaceletContext, Class)
      • getValueExpression

        public abstract javax.el.ValueExpression getValueExpression​(FaceletContext ctx,
                                                                    Class type)
        Create a ValueExpression, using this attribute's literal value and the passed expected type.
        Parameters:
        ctx - FaceletContext to use
        type - expected return type
        Returns:
        ValueExpression instance
        See Also:
        ExpressionFactory.createValueExpression(javax.el.ELContext, java.lang.String, java.lang.Class), ValueExpression
      • isLiteral

        public abstract boolean isLiteral()
        If this TagAttribute is literal (not #{..} or ${..})
        Returns:
        true if this attribute is literal
      • getTag

        public Tag getTag()
        Returns:
        Since:
        2.2
      • setTag

        public void setTag​(Tag tag)
        Parameters:
        tag -
        Since:
        2.2