this.resolved = false;
}
- public Object getContext(Class<?> key) {
+ public Object getContext(Class key) {
if (this.map == null) {
return null;
}
return this.map.get(key);
}
- public void putContext(Class<?> key, Object contextObject) throws NullPointerException {
+ public void putContext(Class key, Object contextObject) throws NullPointerException {
if (key == null || contextObject == null) {
throw new NullPointerException();
}
return this.varMapper;
}
- public Object getContext(Class<?> key) {
+ public Object getContext(Class key) {
return this.elContext.getContext(key);
}
return this.elContext.isPropertyResolved();
}
- public void putContext(Class<?> key, Object contextObject) {
+ public void putContext(Class key, Object contextObject) {
this.elContext.putContext(key, contextObject);
}
return this.target.getVariableMapper();
}
- public Object getContext(Class<?> key) {
+ public Object getContext(Class key) {
return this.target.getContext(key);
}
return this.target.isPropertyResolved();
}
- public void putContext(Class<?> key, Object contextObject) throws NullPointerException {
+ public void putContext(Class key, Object contextObject) throws NullPointerException {
this.target.putContext(key, contextObject);
}