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

This commit is contained in:
rmichela
2012-03-10 14:43:22 -05:00
committed by EvilSeph
parent e06d436701
commit 8e24c7653a
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);
}