com.sun.el.lang
类 VariableMapperImpl

java.lang.Object
  继承者 javax.el.VariableMapper
      继承者 com.sun.el.lang.VariableMapperImpl
所有已实现的接口:
Externalizable, Serializable

public class VariableMapperImpl
extends VariableMapper
implements Externalizable

另请参见:
序列化表格

构造方法摘要
VariableMapperImpl()
           
 
方法摘要
 void readExternal(ObjectInput in)
           
 ValueExpression resolveVariable(String variable)
           
 ValueExpression setVariable(String variable, ValueExpression expression)
          Assign a ValueExpression to an EL variable, replacing any previously assignment to the same variable.
 void writeExternal(ObjectOutput out)
           
 
从类 java.lang.Object 继承的方法
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

构造方法详细信息

VariableMapperImpl

public VariableMapperImpl()
方法详细信息

resolveVariable

public ValueExpression resolveVariable(String variable)
指定者:
VariableMapper 中的 resolveVariable
参数:
variable - The variable name
返回:
the ValueExpression assigned to the variable, null if there is no previous assignment to this variable.

setVariable

public ValueExpression setVariable(String variable,
                                   ValueExpression expression)
从类 VariableMapper 复制的描述
Assign a ValueExpression to an EL variable, replacing any previously assignment to the same variable. The assignment for the variable is removed if the expression is null.

指定者:
VariableMapper 中的 setVariable
参数:
variable - The variable name
expression - The ValueExpression to be assigned to the variable.
返回:
The previous ValueExpression assigned to this variable, null if there is no previouse assignment to this variable.

readExternal

public void readExternal(ObjectInput in)
                  throws IOException,
                         ClassNotFoundException
指定者:
接口 Externalizable 中的 readExternal
抛出:
IOException
ClassNotFoundException

writeExternal

public void writeExternal(ObjectOutput out)
                   throws IOException
指定者:
接口 Externalizable 中的 writeExternal
抛出:
IOException


Copyright © 2013. All Rights Reserved.