diff --git a/src/org/april/hebdobot/cli/HebdobotConfigFile.java b/src/org/april/hebdobot/cli/HebdobotConfigFile.java index bcea4bb..8e1626b 100644 --- a/src/org/april/hebdobot/cli/HebdobotConfigFile.java +++ b/src/org/april/hebdobot/cli/HebdobotConfigFile.java @@ -350,6 +350,7 @@ public class HebdobotConfigFile extends Properties * * @return the review wait time * @throws HebdobotException + * the Hebdobot exception */ public LocalTime getReviewWaitTime() throws HebdobotException { diff --git a/src/org/april/hebdobot/cron/CronValue.java b/src/org/april/hebdobot/cron/CronValue.java index a66f199..91f67a5 100644 --- a/src/org/april/hebdobot/cron/CronValue.java +++ b/src/org/april/hebdobot/cron/CronValue.java @@ -37,11 +37,13 @@ public class CronValue * @param name * the name * @param cron - * the value + * the cron * @param ircMessage * the irc message * @param twitterMessage * the twitter message + * @param imageFile + * the image file */ public CronValue(final String name, final String cron, final String ircMessage, final String twitterMessage, final File imageFile) { diff --git a/src/org/april/hebdobot/model/Hebdobot.java b/src/org/april/hebdobot/model/Hebdobot.java index 596093a..1b8c941 100644 --- a/src/org/april/hebdobot/model/Hebdobot.java +++ b/src/org/april/hebdobot/model/Hebdobot.java @@ -100,8 +100,6 @@ public class Hebdobot extends PircBot * the home directory * @param reviewDirectory * the review directory - * @param reviewFileSuffix - * the review file suffix */ public Hebdobot(final String host, final int port, final String name, final String channel, final File homeDirectory, final File reviewDirectory) { diff --git a/src/org/april/hebdobot/model/stats/IntegerBoard.java b/src/org/april/hebdobot/model/stats/IntegerBoard.java index 542ee0c..d7e88d2 100644 --- a/src/org/april/hebdobot/model/stats/IntegerBoard.java +++ b/src/org/april/hebdobot/model/stats/IntegerBoard.java @@ -49,7 +49,6 @@ public class IntegerBoard implements Iterable * * @param value * the value - * @return true, if successful */ public void add(final Integer value) { @@ -178,11 +177,11 @@ public class IntegerBoard implements Iterable } /** - * Gets the index of. + * Gets the position of board item. * - * @param value - * the value - * @return the index of + * @param search + * the search + * @return the position of */ public Integer getPositionOf(final int search) { diff --git a/src/org/april/hebdobot/model/stats/ReviewDatasFile.java b/src/org/april/hebdobot/model/stats/ReviewDatasFile.java index 8c20df1..1665576 100644 --- a/src/org/april/hebdobot/model/stats/ReviewDatasFile.java +++ b/src/org/april/hebdobot/model/stats/ReviewDatasFile.java @@ -56,10 +56,11 @@ public class ReviewDatasFile * Append. * * @param file - * the target + * the file * @param stat * the stat * @throws HebdobotException + * the hebdobot exception */ public static void append(final File file, final ReviewData stat) throws HebdobotException { @@ -93,8 +94,9 @@ public class ReviewDatasFile * * @param source * the source - * @return the stats + * @return the review datas * @throws HebdobotException + * the hebdobot exception */ public static ReviewDatas load(final File source) throws HebdobotException { @@ -142,10 +144,11 @@ public class ReviewDatasFile /** * Read. * - * @param source - * the source - * @return the stats + * @param in + * the in + * @return the review datas * @throws IOException + * Signals that an I/O exception has occurred. */ public static ReviewDatas read(final BufferedReader in) throws IOException { diff --git a/src/org/april/hebdobot/model/stats/SimpleIntegerBoard.java b/src/org/april/hebdobot/model/stats/SimpleIntegerBoard.java index 445dc03..1e4557c 100644 --- a/src/org/april/hebdobot/model/stats/SimpleIntegerBoard.java +++ b/src/org/april/hebdobot/model/stats/SimpleIntegerBoard.java @@ -71,11 +71,11 @@ public class SimpleIntegerBoard implements Iterable } /** - * Gets the index of. + * Gets the position of the board entry. * - * @param value - * the value - * @return the index of + * @param search + * the search + * @return the position of */ public Integer getPositionOf(final int search) { diff --git a/src/org/april/hebdobot/twitter/TwitterClient.java b/src/org/april/hebdobot/twitter/TwitterClient.java index 696159a..c25ba67 100644 --- a/src/org/april/hebdobot/twitter/TwitterClient.java +++ b/src/org/april/hebdobot/twitter/TwitterClient.java @@ -87,6 +87,7 @@ public class TwitterClient * * @param message * the message + * @return the status * @throws TwitterException * the twitter exception */ @@ -105,8 +106,8 @@ public class TwitterClient * * @param message * the message - * @param image - * the image + * @param imageFile + * the image file * @return the status * @throws TwitterException * the twitter exception