Methods Summary |
---|
public boolean | equals(java.lang.Object obj)
return this.target.equals(obj);
|
public java.lang.Class | getExpectedType()
return this.target.getExpectedType();
|
public java.lang.String | getExpressionString()
return this.target.getExpressionString();
|
public java.lang.Class | getType(javax.el.ELContext context)
try {
return this.target.getType(context);
} catch (PropertyNotFoundException e) {
if (e instanceof JspPropertyNotFoundException) throw e;
throw new JspPropertyNotFoundException(this.mark, e);
} catch (ELException e) {
if (e instanceof JspELException) throw e;
throw new JspELException(this.mark, e);
}
|
public java.lang.Object | getValue(javax.el.ELContext context)
try {
return this.target.getValue(context);
} catch (PropertyNotFoundException e) {
if (e instanceof JspPropertyNotFoundException) throw e;
throw new JspPropertyNotFoundException(this.mark, e);
} catch (ELException e) {
if (e instanceof JspELException) throw e;
throw new JspELException(this.mark, e);
}
|
public int | hashCode()
return this.target.hashCode();
|
public boolean | isLiteralText()
return this.target.isLiteralText();
|
public boolean | isReadOnly(javax.el.ELContext context)
try {
return this.target.isReadOnly(context);
} catch (PropertyNotFoundException e) {
if (e instanceof JspPropertyNotFoundException) throw e;
throw new JspPropertyNotFoundException(this.mark, e);
} catch (ELException e) {
if (e instanceof JspELException) throw e;
throw new JspELException(this.mark, e);
}
|
public void | readExternal(java.io.ObjectInput in)
this.mark = in.readUTF();
this.target = (ValueExpression) in.readObject();
|
public void | setValue(javax.el.ELContext context, java.lang.Object value)
try {
this.target.setValue(context, value);
} catch (PropertyNotWritableException e) {
if (e instanceof JspPropertyNotWritableException) throw e;
throw new JspPropertyNotWritableException(this.mark, e);
} catch (PropertyNotFoundException e) {
if (e instanceof JspPropertyNotFoundException) throw e;
throw new JspPropertyNotFoundException(this.mark, e);
} catch (ELException e) {
if (e instanceof JspELException) throw e;
throw new JspELException(this.mark, e);
}
|
public void | writeExternal(java.io.ObjectOutput out)
out.writeUTF(this.mark);
out.writeObject(this.target);
|