📄 linkedinvocationhandler.java
字号:
/* * @(#)LinkedInvocationHandler.java 1.4 05/11/17 * * Copyright 2006 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */package com.sun.corba.se.spi.orbutil.proxy ;import java.lang.reflect.InvocationHandler ;import java.lang.reflect.Proxy ;/** This interface is used for InvocationHandler types that are * linked to their Proxy. This is useful when the InvocationHandler * needs access to data keyed by identity on the Proxy. */public interface LinkedInvocationHandler extends InvocationHandler{ void setProxy( Proxy proxy ) ; Proxy getProxy() ;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -