private void processNativeDelegated (ClassInfo ci){
if (delegateNative_spec != null){
MethodInfo[] mth = ci.getDeclaredMethodInfos();
for (MethodInfo mi : mth){
for (String spec : delegateNative_spec){
MethodSpec ms = MethodSpec.createMethodSpec(spec);
if (mi.isNative() && !isFiltered(mi) && ms.matches(mi)){
delegateMethod(mi);
}
}
}
}