KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com4j > tlbimp > ReferenceResolver


1 package com4j.tlbimp;
2
3 import com4j.tlbimp.def.IWTypeLib;
4
5 /**
6  * Resolves a reference to another type library.
7  *
8  * @author Kohsuke Kawaguchi (kk@kohsuke.org)
9  */

10 public interface ReferenceResolver {
11     /**
12      * @return
13      * the package name in which this given type library is.
14      */

15     String JavaDoc resolve(IWTypeLib lib) throws BindingException;
16 }
17
Popular Tags