The following document contains the results of PMD's CPD 4.2.2.
| File | Line |
|---|---|
| org/apache/tiles/mvel/TilesContextVariableResolverFactory.java | 160 |
| org/apache/tiles/mvel/TilesContextVariableResolverFactory.java | 245 |
.getApplicationContext());
} catch (IllegalArgumentException e) {
throw new CannotAccessMethodException(
"Arguments are wrong for property '"
+ descriptor.getName() + "'", e);
} catch (IllegalAccessException e) {
throw new CannotAccessMethodException(
"Cannot access getter method for property '"
+ descriptor.getName() + "'", e);
} catch (InvocationTargetException e) {
throw new CannotAccessMethodException(
"The getter method for property '"
+ descriptor.getName() + "' threw an exception",
e);
}
}
/** {@inheritDoc} */
@SuppressWarnings("unchecked")
public void setStaticType(Class type) {
// Does nothing for the moment.
}
/** {@inheritDoc} */
public void setValue(Object value) {
throw new UnsupportedOperationException("This resolver is read-only");
}
}
| |