BAEL-4463: What is com.sun.proxy.$Proxy
This commit is contained in:
+7
@@ -0,0 +1,7 @@
|
||||
package com.baeldung.reflection.proxy;
|
||||
|
||||
public interface AdvancedOperation {
|
||||
int multiple(int a, int b);
|
||||
|
||||
int divide(int a, int b);
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
package com.baeldung.reflection.proxy;
|
||||
|
||||
public interface BasicOperation {
|
||||
int add(int a, int b);
|
||||
|
||||
int sub(int a, int b);
|
||||
}
|
||||
Reference in New Issue
Block a user