static A nuLike proxy_importResults(Class intrface, final O target) {
if (target == null) null;
if (isInstance(intrface, target)) ret (A) target;
ret (A) java.lang.reflect.Proxy.newProxyInstance(intrface.getClassLoader(),
new Class[] { intrface },
new InvocationHandler {
public O invoke(O proxy, Method method, O[] args) {
ret quickImport(call(target, method.getName(), unnull(args)));
}
});
}
static A proxy_importResults(O target, Class intrface) {
ret proxy_importResults(intrface, target);
}