KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > corba > se > impl > presentation > rmi > StubFactoryFactoryProxyImpl


1 /*
2  * @(#)StubFactoryFactoryProxyImpl.java 1.3 04/04/20
3  *
4  * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
5  * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
6  */

7
8 package com.sun.corba.se.impl.presentation.rmi;
9
10 import com.sun.corba.se.spi.presentation.rmi.PresentationManager ;
11
12 public class StubFactoryFactoryProxyImpl extends StubFactoryFactoryDynamicBase
13 {
14     public PresentationManager.StubFactory makeDynamicStubFactory(
15     PresentationManager pm, PresentationManager.ClassData classData,
16     ClassLoader JavaDoc classLoader )
17     {
18     return new StubFactoryProxyImpl( classData, classLoader ) ;
19     }
20 }
21
Popular Tags