We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb98cd2 commit a4e9353Copy full SHA for a4e9353
1 file changed
docs/java/basis/proxy.md
@@ -277,7 +277,7 @@ extends Callback{
277
278
```
279
280
-1. **obj** : 动态生成的代理对象
+1. **obj** : 被代理的对象(需要增强的对象)
281
2. **method** : 被拦截的方法(需要增强的方法)
282
3. **args** : 方法入参
283
4. **proxy** : 用于调用原始方法
@@ -330,7 +330,7 @@ public class DebugMethodInterceptor implements MethodInterceptor {
330
331
332
/**
333
- * @param o 代理对象(增强的对象)
+ * @param o 被代理的对象(需要增强的对象)
334
* @param method 被拦截的方法(需要增强的方法)
335
* @param args 方法入参
336
* @param methodProxy 用于调用原始方法
0 commit comments