diff options
| -rw-r--r-- | sources/core/VSTask.java | 2 | ||||
| -rw-r--r-- | sources/prefs/VSPrefs.java | 7 | ||||
| -rw-r--r-- | sources/protocols/VSAbstractProtocol.java | 4 |
3 files changed, 6 insertions, 7 deletions
diff --git a/sources/core/VSTask.java b/sources/core/VSTask.java index 6f39021..b609704 100644 --- a/sources/core/VSTask.java +++ b/sources/core/VSTask.java @@ -197,7 +197,7 @@ public class VSTask implements Comparable { /** * Sets the message line. * - * @messageLine the message line + * @param messageLine the message line */ public void setMessageLine(simulator.VSSimulatorCanvas.VSMessageLine messageLine) { diff --git a/sources/prefs/VSPrefs.java b/sources/prefs/VSPrefs.java index abd6381..4d27f74 100644 --- a/sources/prefs/VSPrefs.java +++ b/sources/prefs/VSPrefs.java @@ -117,7 +117,7 @@ public class VSPrefs implements Serializable { /** * Gets the unit. * - * @param key the key + * @param fullKey the full key * * @return the unit */ @@ -153,7 +153,7 @@ public class VSPrefs implements Serializable { /** * Gets the description. * - * @param key the key + * @param fullKey the full key * * @return the description */ @@ -166,7 +166,7 @@ public class VSPrefs implements Serializable { /** * Gets the restriction. * - * @param key the key + * @param fullKey the full key * * @return the restriction */ @@ -457,7 +457,6 @@ public class VSPrefs implements Serializable { * @param key the key * @param val the val * @param descr the descr - * @param unit the unit */ public void initFloat(String key, float val, String descr) { initFloat(key, val); diff --git a/sources/protocols/VSAbstractProtocol.java b/sources/protocols/VSAbstractProtocol.java index 70277de..a90f2d3 100644 --- a/sources/protocols/VSAbstractProtocol.java +++ b/sources/protocols/VSAbstractProtocol.java @@ -200,7 +200,7 @@ abstract public class VSAbstractProtocol extends VSAbstractEvent { /** * Checks if is server. * - * @param isServer the is server + * @return true, if the protocol has activated the server part */ public final boolean isServer() { return isServer; @@ -218,7 +218,7 @@ abstract public class VSAbstractProtocol extends VSAbstractEvent { /** * Checks if is client. * - * @param isClient the is client + * @return true, if the protocol has activated the client part */ public final boolean isClient() { return isClient; |
