|
|
Java EE 5 SDK 深圳电信培训中心.徐海蛟老师. |
||||||||
| 上一个类 下一个类 | 框架 无框架 | ||||||||
| 摘要: 嵌套 | 字段 | 构造器 | 方法 | 详细信息: 字段 | 构造器 | 方法 | ||||||||
javax.el Class CompositeELResolver
java.lang.Objectjavax.el.ELResolver
javax.el.CompositeELResolver
public class CompositeELResolver
- extends ELResolver
Maintains an ordered composite list of child ELResolvers.
Though only a single ELResolver is associated with an
ELContext, there are usually multiple resolvers considered
for any given variable or property resolution. ELResolvers
are combined together using a CompositeELResolver, to define
rich semantics for evaluating an expression.
For the getValue(javax.el.ELContext, java.lang.Object, java.lang.Object), getType(javax.el.ELContext, java.lang.Object, java.lang.Object), setValue(javax.el.ELContext, java.lang.Object, java.lang.Object, java.lang.Object) and
isReadOnly(javax.el.ELContext, java.lang.Object, java.lang.Object) methods, an ELResolver is not
responsible for resolving all possible (base, property) pairs. In fact,
most resolvers will only handle a base of a single type.
To indicate that a resolver has successfully resolved a particular
(base, property) pair, it must set the propertyResolved
property of the ELContext to true. If it could
not handle the given pair, it must leave this property alone. The caller
must ignore the return value of the method if propertyResolved
is false.
The CompositeELResolver initializes the
ELContext.propertyResolved flag to false, and uses
it as a stop condition for iterating through its component resolvers.
The ELContext.propertyResolved flag is not used for the
design-time methods getFeatureDescriptors(javax.el.ELContext, java.lang.Object) and
getCommonPropertyType(javax.el.ELContext, java.lang.Object). Instead, results are collected and
combined from all child ELResolvers for these methods.
- 从以下版本开始:
- JSP 2.1
- 另请参见:
ELContext,ELResolver
| 字段摘要 |
|---|
| Fields inherited from class javax.el.ELResolver |
|---|
RESOLVABLE_AT_DESIGN_TIME, TYPE |
| 构造器摘要 | |
|---|---|
CompositeELResolver()
|
|
| 方法摘要 | |
|---|---|
void |
add(ELResolver elResolver)
Adds the given resolver to the list of component resolvers. |
Class<?> |
getCommonPropertyType(ELContext context,
Object base)
Returns the most general type that this resolver accepts for the property argument, given a base object. |
Iterator<FeatureDescriptor> |
getFeatureDescriptors(ELContext context,
Object base)
Returns information about the set of variables or properties that can be resolved for the given base object. |
Class<?> |
getType(ELContext context,
Object base,
Object property)
For a given base and property, attempts to
identify the most general type that is acceptable for an object to be
passed as the value parameter in a future call
to the setValue(javax.el.ELContext, java.lang.Object, java.lang.Object, java.lang.Object) method. |
Object |
getValue(ELContext context,
Object base,
Object property)
Attempts to resolve the given property object on the given
base object by querying all component resolvers. |
boolean |
isReadOnly(ELContext context,
Object base,
Object property)
For a given base and property, attempts to
determine whether a call to setValue(javax.el.ELContext, java.lang.Object, java.lang.Object, java.lang.Object) will always fail. |
void |
setValue(ELContext context,
Object base,
Object property,
Object val)
Attempts to set the value of the given property
object on the given base object. |
| 类方法继承 java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| 构造器详细信息 |
|---|
CompositeELResolver
public CompositeELResolver()
| 方法详细信息 |
|---|
add
public void add(ELResolver elResolver)
- Adds the given resolver to the list of component resolvers.
Resolvers are consulted in the order in which they are added.
- 参数:
elResolver- The component resolver to add.- 抛出异常:
NullPointerException- If the provided resolver isnull.
getValue
public Object getValue(ELContext context, Object base, Object property)
- Attempts to resolve the given
propertyobject on the givenbaseobject by querying all component resolvers.If this resolver handles the given (base, property) pair, the
propertyResolvedproperty of theELContextobject must be set totrueby the resolver, before returning. If this property is nottrueafter this method is called, the caller should ignore the return value.First,
propertyResolvedis set tofalseon the providedELContext.Next, for each component resolver in this composite:
- The
getValue()method is called, passing in the providedcontext,baseandproperty. - If the
ELContext'spropertyResolvedflag isfalsethen iteration continues. - Otherwise, iteration stops and no more component resolvers are
considered. The value returned by
getValue()is returned by this method.
If none of the component resolvers were able to perform this operation, the value
.nullis returned and thepropertyResolvedflag remains set tofalseAny exception thrown by component resolvers during the iteration is propagated to the caller of this method.
- The
- 规范说明:
getValuein classELResolver
- 参数:
context- The context of this evaluation.base- The base object whose property value is to be returned, ornullto resolve a top-level variable.property- The property or variable to be resolved.- 返回:
- If the
propertyResolvedproperty ofELContextwas set totrue, then the result of the variable or property resolution; otherwise undefined. - 抛出异常:
NullPointerException- if context isnullPropertyNotFoundException- if the given (base, property) pair is handled by thisELResolverbut the specified variable or property does not exist or is not readable.ELException- if an exception was thrown while performing the property or variable resolution. The thrown exception must be included as the cause property of this exception, if available.
getType
public Class<?> getType(ELContext context, Object base, Object property)
- For a given
baseandproperty, attempts to identify the most general type that is acceptable for an object to be passed as thevalueparameter in a future call to thesetValue(javax.el.ELContext, java.lang.Object, java.lang.Object, java.lang.Object)method. The result is obtained by querying all component resolvers.If this resolver handles the given (base, property) pair, the
propertyResolvedproperty of theELContextobject must be set totrueby the resolver, before returning. If this property is nottrueafter this method is called, the caller should ignore the return value.First,
propertyResolvedis set tofalseon the providedELContext.Next, for each component resolver in this composite:
- The
getType()method is called, passing in the providedcontext,baseandproperty. - If the
ELContext'spropertyResolvedflag isfalsethen iteration continues. - Otherwise, iteration stops and no more component resolvers are
considered. The value returned by
getType()is returned by this method.
If none of the component resolvers were able to perform this operation, the value
.nullis returned and thepropertyResolvedflag remains set tofalseAny exception thrown by component resolvers during the iteration is propagated to the caller of this method.
- The
- 规范说明:
getTypein classELResolver
- 参数:
context- The context of this evaluation.base- The base object whose property value is to be analyzed, ornullto analyze a top-level variable.property- The property or variable to return the acceptable type for.- 返回:
- If the
propertyResolvedproperty ofELContextwas set totrue, then the most general acceptable type; otherwise undefined. - 抛出异常:
NullPointerException- if context isnullPropertyNotFoundException- if the given (base, property) pair is handled by thisELResolverbut the specified variable or property does not exist or is not readable.ELException- if an exception was thrown while performing the property or variable resolution. The thrown exception must be included as the cause property of this exception, if available.
setValue
public void setValue(ELContext context, Object base, Object property, Object val)
- Attempts to set the value of the given
propertyobject on the givenbaseobject. All component resolvers are asked to attempt to set the value.If this resolver handles the given (base, property) pair, the
propertyResolvedproperty of theELContextobject must be set totrueby the resolver, before returning. If this property is nottrueafter this method is called, the caller can safely assume no value has been set.First,
propertyResolvedis set tofalseon the providedELContext.Next, for each component resolver in this composite:
- The
setValue()method is called, passing in the providedcontext,base,propertyandvalue. - If the
ELContext'spropertyResolvedflag isfalsethen iteration continues. - Otherwise, iteration stops and no more component resolvers are considered.
If none of the component resolvers were able to perform this operation, the
.propertyResolvedflag remains set tofalseAny exception thrown by component resolvers during the iteration is propagated to the caller of this method.
- The
- 规范说明:
setValuein classELResolver
- 参数:
context- The context of this evaluation.base- The base object whose property value is to be set, ornullto set a top-level variable.property- The property or variable to be set.val- The value to set the property or variable to.- 抛出异常:
NullPointerException- if context isnullPropertyNotFoundException- if the given (base, property) pair is handled by thisELResolverbut the specified variable or property does not exist.PropertyNotWritableException- if the given (base, property) pair is handled by thisELResolverbut the specified variable or property is not writable.ELException- if an exception was thrown while attempting to set the property or variable. The thrown exception must be included as the cause property of this exception, if available.
isReadOnly
public boolean isReadOnly(ELContext context, Object base, Object property)
- For a given
baseandproperty, attempts to determine whether a call tosetValue(javax.el.ELContext, java.lang.Object, java.lang.Object, java.lang.Object)will always fail. The result is obtained by querying all component resolvers.If this resolver handles the given (base, property) pair, the
propertyResolvedproperty of theELContextobject must be set totrueby the resolver, before returning. If this property is nottrueafter this method is called, the caller should ignore the return value.First,
propertyResolvedis set tofalseon the providedELContext.Next, for each component resolver in this composite:
- The
isReadOnly()method is called, passing in the providedcontext,baseandproperty. - If the
ELContext'spropertyResolvedflag isfalsethen iteration continues. - Otherwise, iteration stops and no more component resolvers are
considered. The value returned by
isReadOnly()is returned by this method.
If none of the component resolvers were able to perform this operation, the value
.falseis returned and thepropertyResolvedflag remains set tofalseAny exception thrown by component resolvers during the iteration is propagated to the caller of this method.
- The
- 规范说明:
isReadOnlyin classELResolver
- 参数:
context- The context of this evaluation.base- The base object whose property value is to be analyzed, ornullto analyze a top-level variable.property- The property or variable to return the read-only status for.- 返回:
- If the
propertyResolvedproperty ofELContextwas set totrue, thentrueif the property is read-only orfalseif not; otherwise undefined. - 抛出异常:
NullPointerException- if context isnullPropertyNotFoundException- if the given (base, property) pair is handled by thisELResolverbut the specified variable or property does not exist.ELException- if an exception was thrown while performing the property or variable resolution. The thrown exception must be included as the cause property of this exception, if available.
getFeatureDescriptors
public Iterator<FeatureDescriptor> getFeatureDescriptors(ELContext context, Object base)
- Returns information about the set of variables or properties that
can be resolved for the given
baseobject. One use for this method is to assist tools in auto-completion. The results are collected from all component resolvers.The
propertyResolvedproperty of theELContextis not relevant to this method. The results of allELResolvers are concatenated.The
Iteratorreturned is an iterator over the collection ofFeatureDescriptorobjects returned by the iterators returned by each component resolver'sgetFeatureDescriptorsmethod. Ifnullis returned by a resolver, it is skipped. - 规范说明:
getFeatureDescriptorsin classELResolver
- 参数:
context- The context of this evaluation.base- The base object whose set of valid properties is to be enumerated, ornullto enumerate the set of top-level variables that this resolver can evaluate.- 返回:
- An
Iteratorcontaining zero or more (possibly infinitely more)FeatureDescriptorobjects, ornullif this resolver does not handle the givenbaseobject or that the results are too complex to represent with this method - 另请参见:
FeatureDescriptor
getCommonPropertyType
public Class<?> getCommonPropertyType(ELContext context, Object base)
- Returns the most general type that this resolver accepts for the
propertyargument, given abaseobject. One use for this method is to assist tools in auto-completion. The result is obtained by querying all component resolvers.The
Classreturned is the most specific class that is a common superclass of all the classes returned by each component resolver'sgetCommonPropertyTypemethod. Ifnullis returned by a resolver, it is skipped. - 规范说明:
getCommonPropertyTypein classELResolver
- 参数:
context- The context of this evaluation.base- The base object to return the most general property type for, ornullto enumerate the set of top-level variables that this resolver can evaluate.- 返回:
nullif thisELResolverdoes not know how to handle the givenbaseobject; otherwiseObject.classif any type ofpropertyis accepted; otherwise the most generalpropertytype accepted for the givenbase.
|
|
Java EE 5 SDK 深圳电信培训中心.徐海蛟老师. |
||||||||
| 上一个类 下一个类 | 框架 无框架 | ||||||||
| 摘要: 嵌套 | 字段 | 构造器 | 方法 | 详细信息: 字段 | 构造器 | 方法 | ||||||||
提交错误或意见
版权所有 2007 Sun Microsystems, Inc. 保留所有权利。 请遵守许可证条款。深圳电信培训中心.徐海蛟老师教学参考.
