6364656667686970
String propertyName) throws IntrospectionException, ReflectionException { try { return OgnlRuntime.getPropertyDescriptor(targetClass, propertyName); } catch (OgnlException e) { throw new ReflectionException(e); } }
7778798081828384
public Object getRealTarget(String property, Map<String, Object> context, Object root) throws ReflectionException { try { return ognlUtil.getRealTarget(property, context, root); } catch (OgnlException e) { throw new ReflectionException(e); } }
949596979899100101
public Map getBeanMap(Object source) throws IntrospectionException, ReflectionException { try { return ognlUtil.getBeanMap(source); } catch (OgnlException e) { throw new ReflectionException(e); } }
103104105106107108109110
public Object getValue(String expression, Map<String, Object> context, Object root) throws ReflectionException { try { return ognlUtil.getValue(expression, context, root); } catch (OgnlException e) { throw new ReflectionException(e); } }
112113114115116117118119
public void setValue(String expression, Map<String, Object> context, Object root, Object value) throws ReflectionException { try { Ognl.setValue(expression, context, root, value); } catch (OgnlException e) { throw new ReflectionException(e); } }
3031323334353637
public Method getGetMethod(Class targetClass, String propertyName) throws IntrospectionException, ReflectionException { try { return OgnlRuntime.getGetMethod(null, targetClass, propertyName); } catch (OgnlException e) { throw new ReflectionException(e); } }
3940414243444546
public Method getSetMethod(Class targetClass, String propertyName) throws IntrospectionException, ReflectionException { try { return OgnlRuntime.getSetMethod(null, targetClass, propertyName); } catch (OgnlException e) { throw new ReflectionException(e); } }