195196197198199200201202203204205
return reflect2Constructor(owner, argClass); }else if(name.equals("<clinit>")){ throw new ReflectionException("Cannot get static block by reflect at class : " + owner); }else{ return reflect2Method(owner, name, argClass); }
194195196197198199200201202203204