| Method from org.apache.jasper.el.JspValueExpression Detail: |
public boolean equals(Object obj) {
return this.target.equals(obj);
}
|
public Class getExpectedType() {
return this.target.getExpectedType();
}
|
public String getExpressionString() {
return this.target.getExpressionString();
}
|
public Class getType(ELContext context) throws PropertyNotFoundException, ELException, NullPointerException {
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 Object getValue(ELContext context) throws PropertyNotFoundException, ELException, NullPointerException {
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(ELContext context) throws PropertyNotFoundException, ELException, NullPointerException {
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(ObjectInput in) throws ClassNotFoundException, IOException {
this.mark = in.readUTF();
this.target = (ValueExpression) in.readObject();
}
|
public void setValue(ELContext context,
Object value) throws PropertyNotWritableException, PropertyNotFoundException, ELException, NullPointerException {
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(ObjectOutput out) throws IOException {
out.writeUTF(this.mark);
out.writeObject(this.target);
}
|