delegateinvocationhandlerimpl.java

来自「JAVA的一些源码 JAVA2 STANDARD EDITION DEVELO」· Java 代码 · 共 49 行

JAVA
49
字号
/* * @(#)DelegateInvocationHandlerImpl.java	1.9 05/10/31 * * Copyright 2005 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.io.Serializable ;import java.util.Map ;import java.util.LinkedHashMap ;  import java.lang.reflect.Proxy ;import java.lang.reflect.Method ;import java.lang.reflect.InvocationHandler ;import java.lang.reflect.InvocationTargetException ;import com.sun.corba.se.impl.presentation.rmi.DynamicAccessPermission ;public abstract class DelegateInvocationHandlerImpl {    private DelegateInvocationHandlerImpl() {}    public static InvocationHandler create( final Object delegate )    {        SecurityManager s = System.getSecurityManager();        if (s != null) {            s.checkPermission(new DynamicAccessPermission("access"));        }	return new InvocationHandler() {	    public Object invoke( Object proxy, Method method, Object[] args )		throws Throwable	    {		// This throws an IllegalArgument exception if the delegate		// is not assignable from method.getDeclaring class.		try {		    return method.invoke( delegate, args ) ;		} catch (InvocationTargetException ite) {		    // Propagate the underlying exception as the		    // result of the invocation		    throw ite.getCause() ;		}	    }	} ;    }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?