How do I use the javadoc command in javabot?
• To get the javadoc page for a specific class, just do ~javadoc String. • To get the method inside a class of a javadoc page do ~javadoc String.split(*), you can replace the asterisk with the type parameter, such as ~javadoc String.split(String), String.split() takes a String as a parameter. • There may be cases where the same class name exists in different packages. Such is true for List. There is java.util.List and java.awt.List. You may need to actually specify which you want so do, ~javadoc java.util.List, this is most likely the one you will want, otherwise when you do ~javadoc List, both will come up.