Save This Page
Home » glassfish-v2ur2-b04-src » javax » servlet » jsp » el » [javadoc | source]
javax.servlet.jsp.el
public class: ScopedAttributeELResolver [javadoc | source]
java.lang.Object
   javax.el.ELResolver
      javax.servlet.jsp.el.ScopedAttributeELResolver
Defines variable resolution behavior for scoped attributes.

This resolver handles all variable resolutions (where base is null. It searches PageContext.findAttribute() for a matching attribute. If not found, it will return null, or in the case of setValue it will create a new attribute in the page scope with the given name.

Fields inherited from javax.el.ELResolver:
TYPE,  RESOLVABLE_AT_DESIGN_TIME
Method from javax.servlet.jsp.el.ScopedAttributeELResolver Summary:
getCommonPropertyType,   getFeatureDescriptors,   getType,   getValue,   isReadOnly,   setValue
Methods from javax.el.ELResolver:
getCommonPropertyType,   getFeatureDescriptors,   getType,   getValue,   isReadOnly,   setValue
Methods from java.lang.Object:
equals,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from javax.servlet.jsp.el.ScopedAttributeELResolver Detail:
 public Class getCommonPropertyType(ELContext context,
    Object base) 
    If the base object is null, returns String.class. Otherwise, returns null.
 public Iterator getFeatureDescriptors(ELContext context,
    Object base) 
    If the base object is null, returns an Iterator containing FeatureDescriptor objects with information about each scoped attribute resolved by this resolver. Otherwise, returns null.

    The Iterator returned must contain one instance of java.beans.FeatureDescriptor for each scoped attribute found in any scope. Each info object contains information about a single scoped attribute, and is initialized as follows:

  • displayName - The name of the scoped attribute.
  • name - Same as displayName property.
  • shortDescription - A suitable description for the scoped attribute. Should include the attribute's current scope (page, request, session, application). Will vary by implementation.
  • expert - false
  • hidden - false
  • preferred - true
  • In addition, the following named attributes must be set in the returned FeatureDescriptors:
  • ELResolver#TYPE - The current runtime type of the scoped attribute.
  • ELResolver#RESOLVABLE_AT_DESIGN_TIME - true.
 public Class getType(ELContext context,
    Object base,
    Object property) 
    If the base object is null, returns Object.class to indicate that any type is valid to set for a scoped attribute.

    The propertyResolved property of the ELContext object must be set to true by this resolver before returning if base is null. If this property is not true after this method is called, the caller should ignore the return value.

 public Object getValue(ELContext context,
    Object base,
    Object property) 
    If the base object is null, searches the page, request, session and application scopes for an attribute with the given name and returns it, or null if no attribute exists with the current name.

    The propertyResolved property of the ELContext object must be set to true by this resolver before returning if base is null. If this property is not true after this method is called, the caller should ignore the return value.

 public boolean isReadOnly(ELContext context,
    Object base,
    Object property) 
    If the base object is null, returns false to indicate that scoped attributes are never read-only.

    The propertyResolved property of the ELContext object must be set to true by this resolver before returning if base is null. If this property is not true after this method is called, the caller should ignore the return value.

 public  void setValue(ELContext context,
    Object base,
    Object property,
    Object val) 
    If the base object is null, sets an existing scoped attribute to the new value, or creates a new scoped attribute if one does not exist by this name.

    If the provided attribute name matches the key of an attribute in page scope, request scope, session scope, or application scope, the corresponding attribute value will be replaced by the provided value. Otherwise, a new page scope attribute will be created with the given name and value.

    The propertyResolved property of the ELContext object must be set to true by this resolver before returning if base is null. If this property is not true after this method is called, the caller should ignore the return value.