@@ -33,7 +33,7 @@ Please follow those templates or else your issue might get ignored and closed.
3333We accept pull requests for fixing issues or adding new features, but you have to follow those rules.
3434
3535### Javadocs  
36- Please add javadocs comments to ** all public methods the developer has access to.**   
36+ Please add javadocs comments to ** all public methods the developer has access to and should use .**   
3737Javadocs help developers to see what methods they can/should use and what those do.
3838
3939When adding Javadoc comments, follow this Styling choises.
@@ -56,13 +56,15 @@ Do the same for new paragraphs, but keep an empty line in between the text (And
5656Please always use the full path to a class/method when using ` {@link} ` 
5757
5858Bad example: ` {@link BotBlockAPI} `   
59- Good example: ` {@link BotBlockAPI BotBlockAPI} ` 
59+ Good example: ` {@link org.botblock.javabotblockapi. BotBlockAPI BotBlockAPI} ` 
6060
6161We want to point out the alternative text used in the Good example, to display "BotBlockAPI" instead of the path.  
6262When linking to a method that is in a separate class, set the alternative text to ` Class.method(option(s)) ` .
6363
64- There is an exception for linking, when you link to a method in the same (inner) class.  
65- In those cases just link to it by using ` {@link #methodName} ` 
64+ If the method you link to is within the same class, use ` {@link #methodName() methodName()} ` .
65+ 
66+ Linking to external Javadoc may be set with the same linking-rules.  
67+ New external javadocs may need to be added to the ` javadoc `  task in the ` build.gradle ` .
6668
6769** Note** :  
6870Use the ` <a href=""> `  option to link external pages. When doing so also remember to include ` target="_blank" ` .  
@@ -112,6 +114,7 @@ Here is an example of the different parts being used:
112114 * @deprecated  Use {@link  #getFooBar() getFooBar() } instead. 
113115 */  
114116@Deprecated 
117+ @DeprecatedSince ({" v1.0.1" " #getFooBar" //  If you deprecate a method, add this one too.
115118public  String  getFooBar(String  foo) throws IllegalArgumentException {
116119    if (foo. isEmpty())
117120        throw  new  IllegalArgumentException (" foo may not be empty" 
@@ -134,4 +137,4 @@ public String getFooBar(){
134137## [ Code of Conduct]  
135138We want to give everyone a chance to contribute to the project.  
136139So please keep your comments and messages nice. Every message that is considered rasist, insulting or similar will be removed.  
137- If you continue to send those messages you'll be  permanently removed  from this repository.
140+ If you continue to send those messages will we  permanently remove you  from this repository.
0 commit comments