Sfoglia il codice sorgente

Add some javadoc

pull/542/head
Greg Holmes 9 anni fa
parent
commit
0dc9513830

+ 1
- 1
src/com/dmdirc/commandparser/commands/CommandModule.java Vedi File

@@ -382,7 +382,7 @@ public class CommandModule {
382 382
 
383 383
     /**
384 384
      * Provides the /whois command.
385
-     * 
385
+     *
386 386
      * @param command The instantiated command.
387 387
      *
388 388
      * @return The command's details

+ 1
- 1
src/com/dmdirc/commandparser/commands/server/Whois.java Vedi File

@@ -39,7 +39,7 @@ import javax.annotation.Nonnull;
39 39
 import javax.inject.Inject;
40 40
 
41 41
 /**
42
- *
42
+ * Requests information about another user on the server.
43 43
  */
44 44
 @CommandOptions(allowOffline = false)
45 45
 public class Whois extends Command {

+ 5
- 0
src/com/dmdirc/interfaces/Connection.java Vedi File

@@ -416,6 +416,11 @@ public interface Connection {
416 416
      */
417 417
     Optional<String> getNickname();
418 418
 
419
+    /**
420
+     * Requests information about another user on the server.
421
+     *
422
+     * @param user User to request information about
423
+     */
419 424
     void requestUserInfo(User user);
420 425
 
421 426
 }

Loading…
Annulla
Salva