/
githubmirror
/
jdk21u-dev
Обзор
Документация
Войти
/
githubmirror
/
jdk21u-dev
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/jdk/java/awt/datatransfer/CustomClassLoaderTransferTest/TransferableList.java
30 строк
1 KB
Erik Joelsson
8187443: Forest Consolidation: Move files to unified layout
12 сен 2017, 20:03
12 сен 2017, 20:03
3789983
Код
Авторство
О чём код?
import java.io.Serializable; import java.lang.reflect.InvocationHandler; import java.lang.reflect.Method; import java.lang.reflect.Proxy; import java.util.ArrayList; public class TransferableList extends ArrayList { private static class NullInvocationHandler implements InvocationHandler, Serializable { public Object invoke(Object proxy, Method method, Object[] args) throws Throwable { throw new Error("UNIMPLEMENTED"); } } public TransferableList() { try { InvocationHandler handler = new NullInvocationHandler(); Class<?> proxyClass = Proxy.getProxyClass( ListInterface.class.getClassLoader(), new Class[] { ListInterface.class, AnotherInterface.class }); AnotherInterface obj = (AnotherInterface) proxyClass. getConstructor(new Class[]{InvocationHandler.class}). newInstance(handler); } catch (Exception e) { e.printStackTrace(); } } } interface ListInterface extends Serializable {}