[Bleeding] Moved DefaultHelpTopic and GenericCommandHelpTopic to public bukkit api.

By: rmichela <deltahat@gmail.com>
This commit is contained in:
Bukkit/Spigot
2012-03-10 14:43:22 -05:00
parent bb3ac03fcc
commit 2a35131c2a
3 changed files with 139 additions and 1 deletions

View File

@@ -42,5 +42,5 @@ public interface HelpMap {
* @param factory The {@link HelpTopicFactory} implementation to associate with the {@code commandClass}.
* @throws IllegalArgumentException Thrown if {@code commandClass} does not derive from a legal base class.
*/
public void registerHelpTopicFactory(Class commandClass, HelpTopicFactory factory);
public void registerHelpTopicFactory(Class<?> commandClass, HelpTopicFactory<?> factory);
}