summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2008-05-30 00:57:42 +0000
committerPaul Buetow <paul@buetow.org>2008-05-30 00:57:42 +0000
commitac499946aa12d48e8bf3e5d91d78708d64a73daa (patch)
treed670db6d5b7f175e25d828d3da6f578c53fbe442
parentb82536ec35d01fd1195a11733203be7c1c008ad6 (diff)
some javadoc fixes.
-rw-r--r--sources/core/VSTask.java2
-rw-r--r--sources/prefs/VSPrefs.java7
-rw-r--r--sources/protocols/VSAbstractProtocol.java4
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;