Methods Summary |
---|
public boolean | equals(java.lang.Object obj)
return this.target.equals(obj);
|
public java.lang.String | getExpressionString()
return this.target.getExpressionString();
|
public javax.el.MethodInfo | getMethodInfo(javax.el.ELContext context)
try {
return this.target.getMethodInfo(context);
} catch (MethodNotFoundException e) {
if (e instanceof JspMethodNotFoundException) throw e;
throw new JspMethodNotFoundException(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 int | hashCode()
return this.target.hashCode();
|
public java.lang.Object | invoke(javax.el.ELContext context, java.lang.Object[] params)
try {
return this.target.invoke(context, params);
} catch (MethodNotFoundException e) {
if (e instanceof JspMethodNotFoundException) throw e;
throw new JspMethodNotFoundException(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 boolean | isLiteralText()
return this.target.isLiteralText();
|
public void | readExternal(java.io.ObjectInput in)
this.mark = in.readUTF();
this.target = (MethodExpression) in.readObject();
|
public void | writeExternal(java.io.ObjectOutput out)
out.writeUTF(this.mark);
out.writeObject(this.target);
|