Ver código fonte

Javadoc Changes


git-svn-id: http://svn.dmdirc.com/trunk@1292 00569f92-eb28-0410-84fd-f71c24880f
tags/0.4
Shane Mc Cormack 17 anos atrás
pai
commit
d38b73c170

+ 1
- 1
src/uk/org/ownage/dmdirc/parser/ChannelClientInfo.java Ver arquivo

@@ -172,7 +172,7 @@ public final class ChannelClientInfo {
172 172
 	}
173 173
 
174 174
 	/**
175
-	 * Get the most important prefix this client has (o, v etc).
175
+	 * Get the most important prefix this client has (@, + etc).
176 176
 	 *
177 177
 	 * @return String representing the most important mode.
178 178
 	 */

+ 8
- 2
src/uk/org/ownage/dmdirc/plugins/Plugin.java Ver arquivo

@@ -122,8 +122,14 @@ public abstract class Plugin implements Comparable<Plugin> {
122 122
 	 */
123 123
 	public abstract String toString();
124 124
 
125
-	/** {@inheritDoc} */
125
+	/**
126
+	 * Compares this object with the specified object for order.
127
+	 * Returns a negative integer, zero, or a positive integer as per String.compareTo();
128
+	 *
129
+	 * @param o Object to compare to
130
+	 * @return a negative integer, zero, or a positive integer.
131
+	 */
126 132
 	public int compareTo(Plugin o) {
127 133
 		return toString().compareTo(o.toString());
128 134
 	}
129
-}
135
+}

Carregando…
Cancelar
Salvar