KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > ashkelon > InlineTagResolver


1 /*
2  * Created on Jul 24, 2004
3  */

4 package org.ashkelon;
5
6 import com.sun.javadoc.Tag;
7
8 /**
9  * @author Eitan Suez
10  */

11 public interface InlineTagResolver
12 {
13    /**
14     * @param tags text represented as an array of tags, as returned by doc.inlineTags()
15     * @return resolved text
16     */

17     public String JavaDoc resolveDescription(DocInfo doc, Tag[] tags);
18 }
19
Popular Tags