diff --git a/bundles/org.eclipse.e4.ui.css.swt/src/org/eclipse/e4/ui/css/swt/helpers/CSSSWTFontHelper.java b/bundles/org.eclipse.e4.ui.css.swt/src/org/eclipse/e4/ui/css/swt/helpers/CSSSWTFontHelper.java index 3ae12a48b86..c3b3ad2bdb7 100644 --- a/bundles/org.eclipse.e4.ui.css.swt/src/org/eclipse/e4/ui/css/swt/helpers/CSSSWTFontHelper.java +++ b/bundles/org.eclipse.e4.ui.css.swt/src/org/eclipse/e4/ui/css/swt/helpers/CSSSWTFontHelper.java @@ -126,8 +126,6 @@ public static CSS2FontProperties getCSS2FontProperties(Font font) { /** * Get CSS2FontProperties from Font of JComponent and store * CSS2FontProperties instance into ClientProperty of JComponent. - * - * @param component */ public static Font getFont(CSS2FontProperties fontProperties, Control control) { diff --git a/bundles/org.eclipse.ui.browser/src/org/eclipse/ui/internal/browser/browsers/MozillaBrowser.java b/bundles/org.eclipse.ui.browser/src/org/eclipse/ui/internal/browser/browsers/MozillaBrowser.java index 36d17ab701d..d094dbc88eb 100644 --- a/bundles/org.eclipse.ui.browser/src/org/eclipse/ui/internal/browser/browsers/MozillaBrowser.java +++ b/bundles/org.eclipse.ui.browser/src/org/eclipse/ui/internal/browser/browsers/MozillaBrowser.java @@ -46,7 +46,6 @@ public class MozillaBrowser extends AbstractWebBrowser { * Constructor * * @param executable executable filename to launch - * @param executableName name of the program to display when error occurs */ public MozillaBrowser(String id, String executable, String parameters) { super(id); diff --git a/bundles/org.eclipse.ui.genericeditor/src/org/eclipse/ui/internal/genericeditor/ReconcilerRegistry.java b/bundles/org.eclipse.ui.genericeditor/src/org/eclipse/ui/internal/genericeditor/ReconcilerRegistry.java index bdf2446c6ac..75b652cb169 100644 --- a/bundles/org.eclipse.ui.genericeditor/src/org/eclipse/ui/internal/genericeditor/ReconcilerRegistry.java +++ b/bundles/org.eclipse.ui.genericeditor/src/org/eclipse/ui/internal/genericeditor/ReconcilerRegistry.java @@ -72,7 +72,6 @@ public ReconcilerRegistry() { * * @param sourceViewer the source viewer we're hooking completion to. * @param editor the text editor - * @param textViewerLifecycles the list of text viewer lifecycle to fill * @param contentTypes the content types of the document we're editing. * @return the list of {@link IReconciler} contributed for at least one of the * content types, sorted by most generic content type to most specific. @@ -92,7 +91,6 @@ public List getReconcilers(ISourceViewer sourceViewer, ITextEditor * * @param sourceViewer the source viewer we're hooking completion to. * @param editor the text editor - * @param textViewerLifecycles the list of text viewer lifecycle to fill * @param contentTypes the content types of the document we're editing. * @return the list of highlight {@link IReconciler}s contributed for at least * one of the content types, sorted by most generic content type to most @@ -113,7 +111,6 @@ public List getHighlightReconcilers(ISourceViewer sourceViewer, ITe * * @param sourceViewer the source viewer we're hooking completion to. * @param editor the text editor - * @param textViewerLifecycles the list of text viewer lifecycle to fill * @param contentTypes the content types of the document we're editing. * @return the list of folding {@link IReconciler}s contributed for at least one * of the content types, sorted by most generic content type to most diff --git a/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/PartSite.java b/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/PartSite.java index 3d8c9fcfb9d..cd2dadc334c 100644 --- a/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/PartSite.java +++ b/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/PartSite.java @@ -167,7 +167,6 @@ public static final void registerContextMenu(final String menuId, final MenuMana * * @param ref the part reference * @param part the part - * @param page the page it belongs to */ public PartSite(MPart model, IWorkbenchPart part, IWorkbenchPartReference ref, IConfigurationElement element) { this.model = model; diff --git a/examples/org.eclipse.jface.examples.databinding/src/org/eclipse/jface/examples/databinding/mask/EditMask.java b/examples/org.eclipse.jface.examples.databinding/src/org/eclipse/jface/examples/databinding/mask/EditMask.java index 5f5aebfe07a..f27c9b8c453 100644 --- a/examples/org.eclipse.jface.examples.databinding/src/org/eclipse/jface/examples/databinding/mask/EditMask.java +++ b/examples/org.eclipse.jface.examples.databinding/src/org/eclipse/jface/examples/databinding/mask/EditMask.java @@ -102,9 +102,6 @@ public class EditMask { /** * Creates an instance that wraps around a text widget and manages its
* formatting. - * - * @param text - * @param editMask */ public EditMask(Text text) { this.text = text; diff --git a/examples/org.eclipse.ui.forms.examples/src/org/eclipse/ui/forms/examples/internal/rcp/ErrorMessagesPage.java b/examples/org.eclipse.ui.forms.examples/src/org/eclipse/ui/forms/examples/internal/rcp/ErrorMessagesPage.java index 99ff7b55d5d..afbc536773a 100644 --- a/examples/org.eclipse.ui.forms.examples/src/org/eclipse/ui/forms/examples/internal/rcp/ErrorMessagesPage.java +++ b/examples/org.eclipse.ui.forms.examples/src/org/eclipse/ui/forms/examples/internal/rcp/ErrorMessagesPage.java @@ -55,91 +55,6 @@ */ public class ErrorMessagesPage extends FormPage { - /* - private RichMessageToolTipManager richToolTipMessageManager; - class RichToolTip extends ToolTip { - private IManagedForm mform; - private FormText text; - private String content; - - public RichToolTip(IManagedForm mform, Control control) { - super(control); - this.mform = mform; - setShift(new Point(10, 10)); - } - - protected Composite createToolTipContentArea(Event event, - Composite parent) { - this.text = mform.getToolkit().createFormText(parent, true); - configureFormText(mform.getForm().getForm(), text); - update(); - return text; - } - - public void update(String content) { - if (content == null) { - // hide - deactivate(); - } else { - activate(); - this.content = content; - update(); - } - } - - private void update() { - if (text != null && text.isDisposed()) - text = null; - if (text != null) { - if (content != null) - text.setText(content, true, false); - else - text.setText("", false, false); - } - } - } - - class RichMessageToolTipManager implements IMessageToolTipManager { - private ArrayList toolTips = new ArrayList(); - private IManagedForm mform; - - public RichMessageToolTipManager(IManagedForm mform) { - this.mform = mform; - } - - public void createToolTip(Control control, boolean imageLabel) { - ToolTip toolTip = new RichToolTip(mform, control); - toolTips.add(toolTip); - } - - public void setActive(boolean active) { - for (int i = 0; i < toolTips.size(); i++) { - RichToolTip toolTip = (RichToolTip) toolTips.get(i); - if (active) - toolTip.activate(); - else - toolTip.deactivate(); - } - } - - public void update() { - IMessage[] messages = mform.getForm().getForm() - .getChildrenMessages(); - String content = mform.getForm().getMessage() == null ? null - : createFormTextContent(messages); - for (int i = 0; i < toolTips.size(); i++) { - RichToolTip toolTip = (RichToolTip) toolTips.get(i); - toolTip.update(content); - } - } - } - - */ - - /** - * @param id - * @param title - */ public ErrorMessagesPage(FormEditor editor) { super(editor, "messageManager", "Message Manager"); } diff --git a/examples/org.eclipse.ui.forms.examples/src/org/eclipse/ui/forms/examples/internal/rcp/FreeFormPage.java b/examples/org.eclipse.ui.forms.examples/src/org/eclipse/ui/forms/examples/internal/rcp/FreeFormPage.java index 2928e742142..9604c8ca835 100644 --- a/examples/org.eclipse.ui.forms.examples/src/org/eclipse/ui/forms/examples/internal/rcp/FreeFormPage.java +++ b/examples/org.eclipse.ui.forms.examples/src/org/eclipse/ui/forms/examples/internal/rcp/FreeFormPage.java @@ -33,10 +33,7 @@ * Preferences - Java - Code Generation - Code and Comments */ public class FreeFormPage extends FormPage { - /** - * @param id - * @param title - */ + public FreeFormPage(FormEditor editor) { super(editor, "first", "First Page"); } diff --git a/examples/org.eclipse.ui.forms.examples/src/org/eclipse/ui/forms/examples/internal/rcp/NewStylePage.java b/examples/org.eclipse.ui.forms.examples/src/org/eclipse/ui/forms/examples/internal/rcp/NewStylePage.java index 5cbb70d52bc..d3ada5fd5c9 100644 --- a/examples/org.eclipse.ui.forms.examples/src/org/eclipse/ui/forms/examples/internal/rcp/NewStylePage.java +++ b/examples/org.eclipse.ui.forms.examples/src/org/eclipse/ui/forms/examples/internal/rcp/NewStylePage.java @@ -69,10 +69,6 @@ public class NewStylePage extends FormPage { private static final String[] MESSAGE_NAMES = { "text", "info", "warning", "error" }; - /** - * @param id - * @param title - */ public NewStylePage(FormEditor editor) { super(editor, "newStyle", "New Style"); } diff --git a/examples/org.eclipse.ui.forms.examples/src/org/eclipse/ui/forms/examples/internal/rcp/PageWithSubPages.java b/examples/org.eclipse.ui.forms.examples/src/org/eclipse/ui/forms/examples/internal/rcp/PageWithSubPages.java index 97d68e36b21..d9c636199b2 100644 --- a/examples/org.eclipse.ui.forms.examples/src/org/eclipse/ui/forms/examples/internal/rcp/PageWithSubPages.java +++ b/examples/org.eclipse.ui.forms.examples/src/org/eclipse/ui/forms/examples/internal/rcp/PageWithSubPages.java @@ -33,10 +33,8 @@ static class TextSection { String text; public TextSection(String text) {this.text = text;} } - /** - * @param id - * @param title - */ + + public PageWithSubPages(FormEditor editor) { super(editor, "composite", "Composite Page"); } diff --git a/examples/org.eclipse.ui.forms.examples/src/org/eclipse/ui/forms/examples/internal/rcp/SecondPage.java b/examples/org.eclipse.ui.forms.examples/src/org/eclipse/ui/forms/examples/internal/rcp/SecondPage.java index c73d1ec7c57..6db6acddb4a 100644 --- a/examples/org.eclipse.ui.forms.examples/src/org/eclipse/ui/forms/examples/internal/rcp/SecondPage.java +++ b/examples/org.eclipse.ui.forms.examples/src/org/eclipse/ui/forms/examples/internal/rcp/SecondPage.java @@ -32,10 +32,7 @@ * Preferences - Java - Code Generation - Code and Comments */ public class SecondPage extends FormPage { - /** - * @param id - * @param title - */ + public SecondPage(FormEditor editor) { super(editor, "second", "Section Page"); } diff --git a/examples/org.eclipse.ui.forms.examples/src/org/eclipse/ui/forms/examples/internal/rcp/ThirdPage.java b/examples/org.eclipse.ui.forms.examples/src/org/eclipse/ui/forms/examples/internal/rcp/ThirdPage.java index 8b64680ed65..2beb7144776 100644 --- a/examples/org.eclipse.ui.forms.examples/src/org/eclipse/ui/forms/examples/internal/rcp/ThirdPage.java +++ b/examples/org.eclipse.ui.forms.examples/src/org/eclipse/ui/forms/examples/internal/rcp/ThirdPage.java @@ -26,10 +26,7 @@ * Preferences - Java - Code Generation - Code and Comments */ public class ThirdPage extends FormPage { - /** - * @param id - * @param title - */ + public ThirdPage(FormEditor editor) { super(editor, "third", "Flow Page"); } diff --git a/tests/org.eclipse.ui.tests.harness/src/org/eclipse/ui/tests/harness/util/ActionUtil.java b/tests/org.eclipse.ui.tests.harness/src/org/eclipse/ui/tests/harness/util/ActionUtil.java index 3426b11d88e..463fc20734d 100644 --- a/tests/org.eclipse.ui.tests.harness/src/org/eclipse/ui/tests/harness/util/ActionUtil.java +++ b/tests/org.eclipse.ui.tests.harness/src/org/eclipse/ui/tests/harness/util/ActionUtil.java @@ -88,7 +88,6 @@ public static void runActionWithLabel(TestCase test, IWorkbenchWindow win, * * @param test the current test case * @param mgr the containing menu manager - * @param label the action label */ public static void runActionUsingPath(TestCase test, IMenuManager mgr, String idPath) { @@ -103,7 +102,6 @@ public static void runActionUsingPath(TestCase test, IMenuManager mgr, * * @param test the current test case * @param win the containing window - * @param label the action label */ public static void runActionUsingPath(TestCase test, IWorkbenchWindow win, String idPath) { diff --git a/tests/org.eclipse.ui.tests.harness/src/org/eclipse/ui/tests/harness/util/DialogCheck.java b/tests/org.eclipse.ui.tests.harness/src/org/eclipse/ui/tests/harness/util/DialogCheck.java index 888f89e1298..ee8e19180c6 100644 --- a/tests/org.eclipse.ui.tests.harness/src/org/eclipse/ui/tests/harness/util/DialogCheck.java +++ b/tests/org.eclipse.ui.tests.harness/src/org/eclipse/ui/tests/harness/util/DialogCheck.java @@ -77,9 +77,6 @@ public static void assertDialog(Dialog dialog) { * * @param dialog * the test dialog to be verified. - * @param assertion - * this is the test case object, assertions will be executed on this - * object. */ public static void assertDialogTexts(Dialog dialog) { assertNotNull(dialog); diff --git a/tests/org.eclipse.ui.tests.harness/src/org/eclipse/ui/tests/harness/util/DisplayHelper.java b/tests/org.eclipse.ui.tests.harness/src/org/eclipse/ui/tests/harness/util/DisplayHelper.java index 4ded649ffc6..d10c9c309b2 100755 --- a/tests/org.eclipse.ui.tests.harness/src/org/eclipse/ui/tests/harness/util/DisplayHelper.java +++ b/tests/org.eclipse.ui.tests.harness/src/org/eclipse/ui/tests/harness/util/DisplayHelper.java @@ -261,7 +261,7 @@ protected boolean condition() { * happened. * * @param display the display - * @param timeout timeout in milliseconds + * @param timeoutMs timeout in milliseconds * @param condition condition to check, must not be null * @since 1.6 */ diff --git a/tests/org.eclipse.ui.tests.harness/src/org/eclipse/ui/tests/harness/util/EmptyPerspective.java b/tests/org.eclipse.ui.tests.harness/src/org/eclipse/ui/tests/harness/util/EmptyPerspective.java index fc80bc217b3..c27eedb5924 100644 --- a/tests/org.eclipse.ui.tests.harness/src/org/eclipse/ui/tests/harness/util/EmptyPerspective.java +++ b/tests/org.eclipse.ui.tests.harness/src/org/eclipse/ui/tests/harness/util/EmptyPerspective.java @@ -70,8 +70,6 @@ public EmptyPerspective() { * This method is only called when a new perspective is created. If * an old perspective is restored from a persistence file then * this method is not called. - * - * @param factory the factory used to add views to the perspective */ @Override public void createInitialLayout(IPageLayout layout) { diff --git a/tests/org.eclipse.ui.tests.harness/src/org/eclipse/ui/tests/harness/util/RCPTestWorkbenchAdvisor.java b/tests/org.eclipse.ui.tests.harness/src/org/eclipse/ui/tests/harness/util/RCPTestWorkbenchAdvisor.java index bf301cd0bdf..796b1be9f62 100644 --- a/tests/org.eclipse.ui.tests.harness/src/org/eclipse/ui/tests/harness/util/RCPTestWorkbenchAdvisor.java +++ b/tests/org.eclipse.ui.tests.harness/src/org/eclipse/ui/tests/harness/util/RCPTestWorkbenchAdvisor.java @@ -72,11 +72,7 @@ public RCPTestWorkbenchAdvisor(int idleBeforeExit) { } /** - * * Enables the RCP application to runwithout a workbench window - * - * @param runWithoutWindow - * */ public RCPTestWorkbenchAdvisor(boolean windowlessApp) { this.windowlessApp = windowlessApp; diff --git a/tests/org.eclipse.ui.tests/Eclipse UI Tests/org/eclipse/ui/tests/contexts/ContextPage.java b/tests/org.eclipse.ui.tests/Eclipse UI Tests/org/eclipse/ui/tests/contexts/ContextPage.java index 36adf7310a6..94ea1669b13 100755 --- a/tests/org.eclipse.ui.tests/Eclipse UI Tests/org/eclipse/ui/tests/contexts/ContextPage.java +++ b/tests/org.eclipse.ui.tests/Eclipse UI Tests/org/eclipse/ui/tests/contexts/ContextPage.java @@ -75,7 +75,7 @@ public void setFocus() { /** * Sets the message to the given string. * - * @param message + * @param msg * the message text */ public void setMessage(String msg) { diff --git a/tests/org.eclipse.ui.tests/Eclipse UI Tests/org/eclipse/ui/tests/operations/WorkbenchOperationHistoryTests.java b/tests/org.eclipse.ui.tests/Eclipse UI Tests/org/eclipse/ui/tests/operations/WorkbenchOperationHistoryTests.java index 8c96f62aed3..23f53f78000 100644 --- a/tests/org.eclipse.ui.tests/Eclipse UI Tests/org/eclipse/ui/tests/operations/WorkbenchOperationHistoryTests.java +++ b/tests/org.eclipse.ui.tests/Eclipse UI Tests/org/eclipse/ui/tests/operations/WorkbenchOperationHistoryTests.java @@ -38,9 +38,6 @@ public class WorkbenchOperationHistoryTests extends UITestCase { IUndoableOperation op1, op2, op3, op4, op5, op6; - /** - * @param testName - */ public WorkbenchOperationHistoryTests() { super(WorkbenchOperationHistoryTests.class.getSimpleName()); }