Modified:
trunk/src/com/dmdirc/ui/input/InputHandler.java
trunk/src/com/dmdirc/ui/input/tabstyles/TabCompletionStyle.java
Log:
Javadoc fixes
Git-version: 0.6.3m2-366-g629c83a
Modified: trunk/src/com/dmdirc/ui/input/InputHandler.java
===================================================================
--- trunk/src/com/dmdirc/ui/input/InputHandler.java 2010-01-24 16:27:05 UTC (rev 5827)
+++ trunk/src/com/dmdirc/ui/input/InputHandler.java 2010-01-24 16:53:04 UTC (rev 5828)
@@ -399,7 +399,8 @@
* Handles tab completion of a string. Called when the user presses
* (shift) tab.
*
- * @param shiftPressed True if shift is pressed
+ * @param shiftPressed True iff shift is pressed
+ * @since 0.6.3
*/
protected void doTabCompletion(final boolean shiftPressed) {
if (tabCompleter == null || (flags & HANDLE_TABCOMPLETION) == 0) {
@@ -453,6 +454,7 @@
* @param text The text that is being completed
* @param start The start index of the word we're completing
* @param end The end index of the word we're completing
+ * @param shiftPressed True iff shift is pressed
*/
private void doCommandTabCompletion(final String text, final int start,
final int end, final boolean shiftPressed) {
@@ -467,6 +469,7 @@
* @param start The start index of the word we're completing
* @param end The end index of the word we're completing
* @param additional A list of additional strings to use
+ * @param shiftPressed True iff shift is pressed
*/
private void doNormalTabCompletion(final String text, final int start,
final int end, final boolean shiftPressed,
Modified: trunk/src/com/dmdirc/ui/input/tabstyles/TabCompletionStyle.java
===================================================================
--- trunk/src/com/dmdirc/ui/input/tabstyles/TabCompletionStyle.java 2010-01-24 16:27:05 UTC (rev 5827)
+++ trunk/src/com/dmdirc/ui/input/tabstyles/TabCompletionStyle.java 2010-01-24 16:53:04 UTC (rev 5828)
@@ -38,8 +38,11 @@
* @param original The original string which the user inputted
* @param start The start offset of the word that's being tab-completed
* @param end The end offset of the word that's being tab-completed
+ * @param shiftPressed True iff shift is pressed
* @param additional A list of additional targets which may match
+ *
* @return This style's proposed result
+ * @since 0.6.3
*/
TabCompletionResult getResult(final String original, final int start,
final int end, final boolean shiftPressed,