duke@0: /* malenkov@1077: * Copyright 1996-2009 Sun Microsystems, Inc. All Rights Reserved. duke@0: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. duke@0: * duke@0: * This code is free software; you can redistribute it and/or modify it duke@0: * under the terms of the GNU General Public License version 2 only, as duke@0: * published by the Free Software Foundation. Sun designates this duke@0: * particular file as subject to the "Classpath" exception as provided duke@0: * by Sun in the LICENSE file that accompanied this code. duke@0: * duke@0: * This code is distributed in the hope that it will be useful, but WITHOUT duke@0: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or duke@0: * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License duke@0: * version 2 for more details (a copy is included in the LICENSE file that duke@0: * accompanied this code). duke@0: * duke@0: * You should have received a copy of the GNU General Public License version duke@0: * 2 along with this work; if not, write to the Free Software Foundation, duke@0: * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. duke@0: * duke@0: * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, duke@0: * CA 95054 USA or visit www.sun.com if you need additional information or duke@0: * have any questions. duke@0: */ duke@0: jtulach@1238: package sun.beans; duke@0: duke@0: import java.beans.beancontext.BeanContext; jtulach@1238: import java.net.MalformedURLException; duke@0: duke@0: duke@0: /** jtulach@1238: * Bridge between java.beans module and java.applet module. jtulach@1238: * @author Jaroslav Tulach duke@0: */ duke@0: jtulach@1238: public abstract class AppletProxy { jtulach@1238: public abstract boolean initialize( jtulach@1238: Object result, Object init, boolean serialized, jtulach@1238: String beanName, BeanContext beanContext, ClassLoader cls jtulach@1238: ) throws MalformedURLException; duke@0: }