01: package com.technoetic.xplanner.wiki;
02:
03: /**
04: * Interface for external wiki adapters.
05: */
06: public interface ExternalWikiAdapter {
07: /**
08: * Format a wiki word. Typically, this will format a known word as a link to the
09: * wiki page and create a <word>? type of link for unknown words. The unknown words
10: * link to a page that allows definition of the word/topic.
11: * @param wikiWord the word to be formatted
12: * @return the formatted wiki word
13: */
14: String formatWikiWord(String wikiWord);
15: }
|