Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Karpisek2016-11-25 22:23:42 +0000
committerLars Vogel2016-11-28 22:39:10 +0000
commitb262a3e6f0861078461a1a1c2af5815324a7095b (patch)
treea19d747d0e07540fb2e912d69c5528d6bd85386a
parent22c05f142881289b22e11436831f244d2db36f29 (diff)
downloadeclipse.pde.ui-b262a3e6f0861078461a1a1c2af5815324a7095b.tar.gz
eclipse.pde.ui-b262a3e6f0861078461a1a1c2af5815324a7095b.tar.xz
eclipse.pde.ui-b262a3e6f0861078461a1a1c2af5815324a7095b.zip
Bug 275738 - Lots of javadoc warnings in PDE (o.e.pde.ua.core)
removes javadoc method comments which: - are completely empty or - which are effectively empty (contains only @parameter/@return without description removes also @parameter comments for parameters which are not anymore existing (is code warning) done for files where were some javadoc code warning Change-Id: I789a6a4ee9158fc11785e2cf867d1e3f0c2d42e1 Signed-off-by: Martin Karpisek <martin.karpisek@gmail.com>
-rw-r--r--ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/comp/CompCSWorkspaceModel.java19
-rw-r--r--ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/simple/ISimpleCS.java40
-rw-r--r--ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/simple/ISimpleCSAction.java15
-rw-r--r--ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/simple/ISimpleCSConditionalSubItem.java10
-rw-r--r--ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/simple/ISimpleCSDescription.java4
-rw-r--r--ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/simple/ISimpleCSHelpObject.java8
-rw-r--r--ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/simple/ISimpleCSIntro.java4
-rw-r--r--ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/simple/ISimpleCSItem.java53
-rw-r--r--ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/simple/ISimpleCSModel.java6
-rw-r--r--ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/simple/ISimpleCSModelFactory.java33
-rw-r--r--ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/simple/ISimpleCSObject.java22
-rw-r--r--ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/simple/ISimpleCSOnCompletion.java4
-rw-r--r--ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/simple/ISimpleCSPerformWhen.java10
-rw-r--r--ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/simple/ISimpleCSRepeatedSubItem.java8
-rw-r--r--ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/simple/ISimpleCSRun.java4
-rw-r--r--ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/simple/ISimpleCSRunObject.java16
-rw-r--r--ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/simple/ISimpleCSSubItem.java12
17 files changed, 1 insertions, 267 deletions
diff --git a/ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/comp/CompCSWorkspaceModel.java b/ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/comp/CompCSWorkspaceModel.java
index 8e40121d08..8acdf37802 100644
--- a/ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/comp/CompCSWorkspaceModel.java
+++ b/ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/comp/CompCSWorkspaceModel.java
@@ -11,12 +11,7 @@
package org.eclipse.pde.internal.ua.core.cheatsheet.comp;
-import java.io.BufferedInputStream;
-import java.io.ByteArrayInputStream;
-import java.io.IOException;
-import java.io.InputStream;
-import java.io.PrintWriter;
-import java.io.StringWriter;
+import java.io.*;
import org.eclipse.core.resources.IFile;
import org.eclipse.core.resources.IResource;
@@ -35,14 +30,8 @@ public class CompCSWorkspaceModel extends CompCSModel implements
private boolean fEditable;
- /**
- *
- */
private static final long serialVersionUID = 1L;
- /**
- *
- */
public CompCSWorkspaceModel(IFile file, boolean editable) {
fFile = file;
fEditable = editable;
@@ -71,9 +60,6 @@ public class CompCSWorkspaceModel extends CompCSModel implements
}
}
- /**
- * @return
- */
private String getContents() {
StringWriter swriter = new StringWriter();
PrintWriter writer = new PrintWriter(swriter);
@@ -140,9 +126,6 @@ public class CompCSWorkspaceModel extends CompCSModel implements
return fEditable;
}
- /**
- * @return
- */
public String getInstallLocation() {
return fFile.getLocation().toOSString();
}
diff --git a/ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/simple/ISimpleCS.java b/ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/simple/ISimpleCS.java
index 57e9822836..8e807337e1 100644
--- a/ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/simple/ISimpleCS.java
+++ b/ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/simple/ISimpleCS.java
@@ -15,123 +15,83 @@ public interface ISimpleCS extends ISimpleCSObject {
/**
* Attribute: title
- *
- * @return
*/
public String getTitle();
/**
* Attribute: title
- *
- * @param title
*/
public void setTitle(String title);
/**
* Element: intro
- *
- * @return
*/
public ISimpleCSIntro getIntro();
/**
* Element: intro
- *
- * @param intro
*/
public void setIntro(ISimpleCSIntro intro);
/**
* Element: item
- *
- * @return
*/
public ISimpleCSItem[] getItems();
/**
* Element: item
- *
- * @param item
*/
public void addItem(ISimpleCSItem item);
/**
* Element: item
- *
- * @param item
- * @param index
*/
public void addItem(int index, ISimpleCSItem item);
/**
* Element: item
- *
- * @param item
*/
public void removeItem(ISimpleCSItem item);
/**
* Element: item
- *
- * @param index
*/
public void removeItem(int index);
/**
* Element: item
- *
- * @param item
- * @param newRelativeIndex
*/
public void moveItem(ISimpleCSItem item, int newRelativeIndex);
/**
* Element: item
- *
- * @param item
*/
public boolean isFirstItem(ISimpleCSItem item);
/**
* Element: item
- *
- * @param item
*/
public boolean isLastItem(ISimpleCSItem item);
- /**
- * @param item
- * @return
- */
public int indexOfItem(ISimpleCSItem item);
/**
* Element: item
- *
- * @return
*/
public int getItemCount();
/**
* Element: item
- *
- * @return
*/
public boolean hasItems();
/**
* Element: item
- *
- * @param item
- * @return
*/
public ISimpleCSItem getNextSibling(ISimpleCSItem item);
/**
* Element: item
- *
- * @param item
- * @return
*/
public ISimpleCSItem getPreviousSibling(ISimpleCSItem item);
diff --git a/ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/simple/ISimpleCSAction.java b/ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/simple/ISimpleCSAction.java
index 183786450f..069992826d 100644
--- a/ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/simple/ISimpleCSAction.java
+++ b/ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/simple/ISimpleCSAction.java
@@ -15,51 +15,36 @@ public interface ISimpleCSAction extends ISimpleCSRunObject {
/**
* Attribute: class
- *
- * @return
*/
public String getClazz();
/**
* Attribute: class
- *
- * @param clazz
*/
public void setClazz(String clazz);
/**
* Attribute: pluginId
- *
- * @return
*/
public String getPluginId();
/**
* Attribute: pluginId
- *
- * @param pluginId
*/
public void setPluginId(String pluginId);
/**
* Attributes: param1, param2, ..., param9
- *
- * @return
*/
public String[] getParams();
/**
* Attributes: param1, param2, ..., param9
- *
- * @return
*/
public String getParam(int index);
/**
* Attributes: param1, param2, ..., param9
- *
- * @param param
- * @param index
*/
public void setParam(String param, int index);
diff --git a/ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/simple/ISimpleCSConditionalSubItem.java b/ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/simple/ISimpleCSConditionalSubItem.java
index 064dfd3cf4..66a61b16b7 100644
--- a/ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/simple/ISimpleCSConditionalSubItem.java
+++ b/ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/simple/ISimpleCSConditionalSubItem.java
@@ -15,36 +15,26 @@ public interface ISimpleCSConditionalSubItem extends ISimpleCSSubItemObject {
/**
* Attribute: condition
- *
- * @return
*/
public String getCondition();
/**
* Attribute: condition
- *
- * @param condition
*/
public void setCondition(String condition);
/**
* Element: subitem
- *
- * @return
*/
public ISimpleCSSubItem[] getSubItems();
/**
* Elements: subitem
- *
- * @param subitems
*/
public void addSubItem(ISimpleCSSubItem subitem);
/**
* Elements: subitem
- *
- * @param subitems
*/
public void removeSubItem(ISimpleCSSubItem subitem);
diff --git a/ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/simple/ISimpleCSDescription.java b/ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/simple/ISimpleCSDescription.java
index 096d3592f0..641551bb8d 100644
--- a/ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/simple/ISimpleCSDescription.java
+++ b/ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/simple/ISimpleCSDescription.java
@@ -15,15 +15,11 @@ public interface ISimpleCSDescription extends ISimpleCSObject {
/**
* Content (element)
- *
- * @return
*/
public String getContent();
/**
* Content (element)
- *
- * @param content
*/
public void setContent(String content);
}
diff --git a/ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/simple/ISimpleCSHelpObject.java b/ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/simple/ISimpleCSHelpObject.java
index d9ca63cfee..b9b500819e 100644
--- a/ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/simple/ISimpleCSHelpObject.java
+++ b/ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/simple/ISimpleCSHelpObject.java
@@ -15,29 +15,21 @@ public interface ISimpleCSHelpObject extends ISimpleCSObject {
/**
* Attribute: contextId
- *
- * @return
*/
public String getContextId();
/**
* Attribute: contextId
- *
- * @param contextId
*/
public void setContextId(String contextId);
/**
* Attribute: href
- *
- * @return
*/
public String getHref();
/**
* Attribute: href
- *
- * @param href
*/
public void setHref(String href);
diff --git a/ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/simple/ISimpleCSIntro.java b/ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/simple/ISimpleCSIntro.java
index e229f4131e..759aa76778 100644
--- a/ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/simple/ISimpleCSIntro.java
+++ b/ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/simple/ISimpleCSIntro.java
@@ -15,15 +15,11 @@ public interface ISimpleCSIntro extends ISimpleCSObject, ISimpleCSHelpObject {
/**
* Element: description
- *
- * @return
*/
public ISimpleCSDescription getDescription();
/**
* Element: description
- *
- * @param description
*/
public void setDescription(ISimpleCSDescription description);
diff --git a/ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/simple/ISimpleCSItem.java b/ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/simple/ISimpleCSItem.java
index a666f7a8ae..7e9a27cc11 100644
--- a/ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/simple/ISimpleCSItem.java
+++ b/ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/simple/ISimpleCSItem.java
@@ -16,169 +16,116 @@ public interface ISimpleCSItem extends ISimpleCSObject, ISimpleCSHelpObject,
/**
* Element: description
- *
- * @return
*/
public ISimpleCSDescription getDescription();
/**
* Element: description
- *
- * @param description
*/
public void setDescription(ISimpleCSDescription description);
/**
* Attribute: title
- *
- * @return
*/
public String getTitle();
/**
* Attribute: title
- *
- * @param title
*/
public void setTitle(String title);
/**
* Attribute: dialog
- *
- * @return
*/
public boolean getDialog();
/**
* Attribute: dialog
- *
- * @param dialog
*/
public void setDialog(boolean dialog);
/**
* Attribute: skip
- *
- * @return
*/
public boolean getSkip();
/**
* Attribute: skip
- *
- * @param skip
*/
public void setSkip(boolean skip);
/**
* Elements: subitem, repeated-subitem, conditional-subitem
- *
- * @return
*/
public ISimpleCSSubItemObject[] getSubItems();
/**
* Element: subitem, repeated-subitem, conditional-subitem
- *
- * @param subitem
*/
public void addSubItem(ISimpleCSSubItemObject subitem);
/**
* Element: subitem, repeated-subitem, conditional-subitem
- *
- * @param index
- * @param subitem
*/
public void addSubItem(int index, ISimpleCSSubItemObject subitem);
/**
* Element: subitem, repeated-subitem, conditional-subitem
- *
- * @param subitem
*/
public void removeSubItem(ISimpleCSSubItemObject subitem);
/**
* Element: subitem, repeated-subitem, conditional-subitem
- *
- * @param index
*/
public void removeSubItem(int index);
/**
* Element: subitem, repeated-subitem, conditional-subitem
- *
- * @param subitem
- * @param newRelativeIndex
*/
public void moveSubItem(ISimpleCSSubItemObject subitem, int newRelativeIndex);
/**
* Element: onCompletion
- *
- * @return
*/
public ISimpleCSOnCompletion getOnCompletion();
/**
* Element: onCompletion
- *
- * @param onCompletion
*/
public void setOnCompletion(ISimpleCSOnCompletion onCompletion);
/**
* Element: subitem, repeated-subitem, conditional-subitem
- *
- * @param subitem
- * @return
*/
public boolean isFirstSubItem(ISimpleCSSubItemObject subitem);
/**
* Element: subitem, repeated-subitem, conditional-subitem
- *
- * @param subitem
- * @return
*/
public boolean isLastSubItem(ISimpleCSSubItemObject subitem);
/**
* Element: subitem, repeated-subitem, conditional-subitem
- *
- * @param subitem
- * @return
*/
public int indexOfSubItem(ISimpleCSSubItemObject subitem);
/**
* Element: subitem, repeated-subitem, conditional-subitem
- *
- * @return
*/
public int getSubItemCount();
/**
* Element: subitem, repeated-subitem, conditional-subitem
- *
- * @return
*/
public boolean hasSubItems();
/**
* Element: subitem, repeated-subitem, conditional-subitem
- *
- * @param subitem
- * @return
*/
public ISimpleCSSubItemObject getNextSibling(ISimpleCSSubItemObject subitem);
/**
* Element: subitem, repeated-subitem, conditional-subitem
- *
- * @param subitem
- * @return
*/
public ISimpleCSSubItemObject getPreviousSibling(
ISimpleCSSubItemObject subitem);
diff --git a/ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/simple/ISimpleCSModel.java b/ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/simple/ISimpleCSModel.java
index 7a02e5efd8..19b7a4de5d 100644
--- a/ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/simple/ISimpleCSModel.java
+++ b/ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/simple/ISimpleCSModel.java
@@ -16,14 +16,8 @@ import org.eclipse.pde.core.IModelChangeProvider;
public interface ISimpleCSModel extends IModelChangeProvider, IModel {
- /**
- * @return
- */
ISimpleCS getSimpleCS();
- /**
- * @return
- */
ISimpleCSModelFactory getFactory();
}
diff --git a/ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/simple/ISimpleCSModelFactory.java b/ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/simple/ISimpleCSModelFactory.java
index c471a5d27f..62b1e2b977 100644
--- a/ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/simple/ISimpleCSModelFactory.java
+++ b/ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/simple/ISimpleCSModelFactory.java
@@ -15,61 +15,28 @@ import org.eclipse.pde.internal.core.text.IDocumentNodeFactory;
public interface ISimpleCSModelFactory extends IDocumentNodeFactory {
- /**
- * @return
- */
public ISimpleCS createSimpleCS();
- /**
- * @return
- */
public ISimpleCSAction createSimpleCSAction(ISimpleCSObject parent);
- /**
- * @return
- */
public ISimpleCSCommand createSimpleCSCommand(ISimpleCSObject parent);
- /**
- * @return
- */
public ISimpleCSConditionalSubItem createSimpleCSConditionalSubItem(
ISimpleCSObject parent);
- /**
- * @return
- */
public ISimpleCSIntro createSimpleCSIntro(ISimpleCSObject parent);
- /**
- * @return
- */
public ISimpleCSItem createSimpleCSItem(ISimpleCSObject parent);
- /**
- * @return
- */
public ISimpleCSOnCompletion createSimpleCSOnCompletion(
ISimpleCSObject parent);
- /**
- * @return
- */
public ISimpleCSPerformWhen createSimpleCSPerformWhen(ISimpleCSObject parent);
- /**
- * @return
- */
public ISimpleCSRepeatedSubItem createSimpleCSRepeatedSubItem(
ISimpleCSObject parent);
- /**
- * @return
- */
public ISimpleCSSubItem createSimpleCSSubItem(ISimpleCSObject parent);
- /**
- * @return
- */
public ISimpleCSDescription createSimpleCSDescription(ISimpleCSObject parent);
}
diff --git a/ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/simple/ISimpleCSObject.java b/ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/simple/ISimpleCSObject.java
index 7a92737759..b98b704268 100644
--- a/ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/simple/ISimpleCSObject.java
+++ b/ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/simple/ISimpleCSObject.java
@@ -18,42 +18,23 @@ import org.w3c.dom.Element;
public interface ISimpleCSObject extends IDocumentObject, ISimpleCSConstants {
- /**
- * @return
- */
ISimpleCSModel getModel();
- /**
- * @param model
- */
void setModel(ISimpleCSModel model);
- /**
- * @return
- */
ISimpleCS getSimpleCS();
- /**
- * @param node
- */
void parse(Element element);
- /**
- *
- */
public void reset();
/**
* To avoid using instanceof all over the place
- *
- * @return
*/
public int getType();
/**
* For the label provider
- *
- * @return
*/
public String getName();
@@ -64,9 +45,6 @@ public interface ISimpleCSObject extends IDocumentObject, ISimpleCSConstants {
*/
public List getChildren();
- /**
- * @return
- */
public ISimpleCSObject getParent();
}
diff --git a/ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/simple/ISimpleCSOnCompletion.java b/ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/simple/ISimpleCSOnCompletion.java
index 54a77e06f0..6ed054901a 100644
--- a/ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/simple/ISimpleCSOnCompletion.java
+++ b/ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/simple/ISimpleCSOnCompletion.java
@@ -15,15 +15,11 @@ public interface ISimpleCSOnCompletion extends ISimpleCSObject {
/**
* Content (element)
- *
- * @return
*/
public String getContent();
/**
* Content (element)
- *
- * @param content
*/
public void setContent(String content);
}
diff --git a/ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/simple/ISimpleCSPerformWhen.java b/ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/simple/ISimpleCSPerformWhen.java
index a94b9ae35a..dd81d1699e 100644
--- a/ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/simple/ISimpleCSPerformWhen.java
+++ b/ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/simple/ISimpleCSPerformWhen.java
@@ -15,36 +15,26 @@ public interface ISimpleCSPerformWhen extends ISimpleCSRunContainerObject {
/**
* Attribute: condition
- *
- * @return
*/
public String getCondition();
/**
* Attribute: condition
- *
- * @param condition
*/
public void setCondition(String condition);
/**
* Elements: command, action
- *
- * @return
*/
public ISimpleCSRunObject[] getExecutables();
/**
* Elements: command, action
- *
- * @param executables
*/
public void addExecutable(ISimpleCSRunObject executable);
/**
* Elements: command, action
- *
- * @param executables
*/
public void removeExecutable(ISimpleCSRunObject executable);
diff --git a/ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/simple/ISimpleCSRepeatedSubItem.java b/ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/simple/ISimpleCSRepeatedSubItem.java
index 192500d845..11c750e44f 100644
--- a/ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/simple/ISimpleCSRepeatedSubItem.java
+++ b/ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/simple/ISimpleCSRepeatedSubItem.java
@@ -15,29 +15,21 @@ public interface ISimpleCSRepeatedSubItem extends ISimpleCSSubItemObject {
/**
* Attribute: values
- *
- * @return
*/
public String getValues();
/**
* Attribute: values
- *
- * @param values
*/
public void setValues(String values);
/**
* Element: subitem
- *
- * @return
*/
public ISimpleCSSubItem getSubItem();
/**
* Element: subitem
- *
- * @param subitem
*/
public void setSubItem(ISimpleCSSubItem subitem);
diff --git a/ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/simple/ISimpleCSRun.java b/ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/simple/ISimpleCSRun.java
index c7bced3a75..7d883b59de 100644
--- a/ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/simple/ISimpleCSRun.java
+++ b/ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/simple/ISimpleCSRun.java
@@ -15,15 +15,11 @@ public interface ISimpleCSRun extends ISimpleCSObject {
/**
* Elements: action, command, perform-when
- *
- * @return
*/
public ISimpleCSRunContainerObject getExecutable();
/**
* Elements: action, command, perform-when
- *
- * @param executable
*/
public void setExecutable(ISimpleCSRunContainerObject executable);
diff --git a/ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/simple/ISimpleCSRunObject.java b/ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/simple/ISimpleCSRunObject.java
index f646034c6c..686f169077 100644
--- a/ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/simple/ISimpleCSRunObject.java
+++ b/ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/simple/ISimpleCSRunObject.java
@@ -15,57 +15,41 @@ public interface ISimpleCSRunObject extends ISimpleCSRunContainerObject {
/**
* Attribute: confirm
- *
- * @return
*/
public boolean getConfirm();
/**
* Attribute: confirm
- *
- * @param confirm
*/
public void setConfirm(boolean confirm);
/**
* Attribute: when
- *
- * @return
*/
public String getWhen();
/**
* Attribute: when
- *
- * @param when
*/
public void setWhen(String when);
/**
* Attribute: translate
- *
- * @return
*/
public String getTranslate();
/**
* Attribute: translate
- *
- * @param translate
*/
public void setTranslate(String translate);
/**
* Attribute: required
- *
- * @return
*/
public boolean getRequired();
/**
* Attribute: required
- *
- * @param required
*/
public void setRequired(boolean required);
diff --git a/ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/simple/ISimpleCSSubItem.java b/ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/simple/ISimpleCSSubItem.java
index b2566da45d..16863923ee 100644
--- a/ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/simple/ISimpleCSSubItem.java
+++ b/ua/org.eclipse.pde.ua.core/src/org/eclipse/pde/internal/ua/core/cheatsheet/simple/ISimpleCSSubItem.java
@@ -15,43 +15,31 @@ public interface ISimpleCSSubItem extends ISimpleCSSubItemObject, ISimpleCSRun {
/**
* Attribute: label
- *
- * @return
*/
public String getLabel();
/**
* Attribute: label
- *
- * @param label
*/
public void setLabel(String label);
/**
* Attribute: skip
- *
- * @return
*/
public boolean getSkip();
/**
* Attribute: skip
- *
- * @param skip
*/
public void setSkip(boolean skip);
/**
* Attribute: when
- *
- * @return
*/
public String getWhen();
/**
* Attribute: when
- *
- * @param when
*/
public void setWhen(String when);

Back to the top