KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > codehaus > loom > components > util > infobuilder > BlockInfoReader


1 package org.codehaus.loom.components.util.infobuilder;
2
3 import org.codehaus.loom.components.util.info.ComponentInfo;
4
5 /**
6  * @author <a HREF="mailto:proyal@pace2020.com">peter royal</a>
7  */

8 public interface BlockInfoReader
9 {
10     /**
11      * Create a ComponentInfo object for specified classname, in specified ClassLoader.
12      *
13      * @param type The Components type
14      *
15      * @return the created ComponentInfo
16      */

17     ComponentInfo buildComponentInfo( Class JavaDoc type )
18         throws Exception JavaDoc;
19 }
Popular Tags