linkedinvocationhandler.java
来自「JAVA的一些源码 JAVA2 STANDARD EDITION DEVELO」· Java 代码 · 共 24 行
JAVA
24 行
/* * @(#)LinkedInvocationHandler.java 1.3 04/07/27 * * Copyright 2004 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 + =
减小字号Ctrl + -
显示快捷键?