KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > corba > se > spi > resolver > LocalResolver


1 /*
2  * @(#)LocalResolver.java 1.5 04/06/21
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.spi.resolver ;
9
10 import com.sun.corba.se.spi.orbutil.closure.Closure ;
11
12 /** A LocalResolver is a Resolver that allows registration of (name, CORBA object)
13  * bindings.
14  */

15 public interface LocalResolver extends Resolver {
16     /** Register the Closure with the given name.
17      * The Closure must evaluate to an org.omg.CORBA.Object.
18      */

19     void register( String JavaDoc name, Closure closure ) ;
20 }
21
Popular Tags