1 16 17 package org.apache.commons.jexl.util.introspection; 18 19 import java.util.Iterator ; 20 21 29 public interface Uberspect { 30 34 void init() throws Exception ; 35 36 43 Iterator getIterator(Object obj, Info info) throws Exception ; 44 45 54 VelMethod getMethod(Object obj, String method, Object [] args, Info info) throws Exception ; 55 56 65 VelPropertyGet getPropertyGet(Object obj, String identifier, Info info) throws Exception ; 66 67 77 VelPropertySet getPropertySet(Object obj, String identifier, Object arg, Info info) throws Exception ; 78 } 79 | Popular Tags |