Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Schorn2008-05-05 13:17:00 +0000
committerMarkus Schorn2008-05-05 13:17:00 +0000
commit20896516c82cf47dc476fc132d39adab4664d20d (patch)
treefb0623c80e9868f557a7149c3bd58415a62b5606 /core/org.eclipse.cdt.core/templateengine/org/eclipse
parent1ca9b63fb7c61740e3ef51d83a3329b735211477 (diff)
downloadorg.eclipse.cdt-20896516c82cf47dc476fc132d39adab4664d20d.tar.gz
org.eclipse.cdt-20896516c82cf47dc476fc132d39adab4664d20d.tar.xz
org.eclipse.cdt-20896516c82cf47dc476fc132d39adab4664d20d.zip
Fixes java-doc problems.
Diffstat (limited to 'core/org.eclipse.cdt.core/templateengine/org/eclipse')
-rw-r--r--core/org.eclipse.cdt.core/templateengine/org/eclipse/cdt/core/templateengine/process/ProcessParameter.java3
-rw-r--r--core/org.eclipse.cdt.core/templateengine/org/eclipse/cdt/core/templateengine/process/ProcessRunner.java15
2 files changed, 3 insertions, 15 deletions
diff --git a/core/org.eclipse.cdt.core/templateengine/org/eclipse/cdt/core/templateengine/process/ProcessParameter.java b/core/org.eclipse.cdt.core/templateengine/org/eclipse/cdt/core/templateengine/process/ProcessParameter.java
index ce43a2bedd0..9b85f6523ba 100644
--- a/core/org.eclipse.cdt.core/templateengine/org/eclipse/cdt/core/templateengine/process/ProcessParameter.java
+++ b/core/org.eclipse.cdt.core/templateengine/org/eclipse/cdt/core/templateengine/process/ProcessParameter.java
@@ -73,7 +73,6 @@ public class ProcessParameter {
/**
* Return the Element name.
- * @return
*/
public String getName() {
return name;
@@ -81,7 +80,6 @@ public class ProcessParameter {
/**
* Returns the Element Type.
- * @return
*/
public byte getType() {
return type;
@@ -96,7 +94,6 @@ public class ProcessParameter {
/**
* Checks whether the element in external.
- * @return
*/
public boolean isExternal() {
return external;
diff --git a/core/org.eclipse.cdt.core/templateengine/org/eclipse/cdt/core/templateengine/process/ProcessRunner.java b/core/org.eclipse.cdt.core/templateengine/org/eclipse/cdt/core/templateengine/process/ProcessRunner.java
index 19a2b6a1109..c4d3ee70ce7 100644
--- a/core/org.eclipse.cdt.core/templateengine/org/eclipse/cdt/core/templateengine/process/ProcessRunner.java
+++ b/core/org.eclipse.cdt.core/templateengine/org/eclipse/cdt/core/templateengine/process/ProcessRunner.java
@@ -29,16 +29,13 @@ public abstract class ProcessRunner {
/**
* Returns the Process Parameters.
- * @return
*/
public ProcessParameter[] getProcessParameters() {
return params;
}
/**
- * Checks the whether the arguments are matching to Requied Parameters.
- * @param args
- * @return
+ * Checks the whether the arguments are matching the required parameters.
*/
protected final boolean areArgumentsMatchingRequiredParameters(ProcessArgument[] args) {
if ((params == null && args != null) || (params != null && args == null)) {
@@ -60,9 +57,7 @@ public abstract class ProcessRunner {
/**
* Return the String containing the mismatching message
- * if the arguments are not matching to Requied Parameters.
- * @param args
- * @return
+ * if the arguments are not matching the required parameters.
*/
public String getArgumentsMismatchMessage(ProcessArgument[] args) {
if (params == null && args != null) {
@@ -88,11 +83,7 @@ public abstract class ProcessRunner {
}
/**
- * Returns the process message based on the pameters.
- * @param processId
- * @param code
- * @param msg
- * @return
+ * Returns the process message based on the parameters.
*/
protected final String getProcessMessage(String processId, int code, String msg) {
switch (code) {

Back to the top