diff --git a/bundles/org.eclipse.e4.ui.css.core/src/org/eclipse/e4/ui/css/core/css2/CSS2FontPropertiesHelpers.java b/bundles/org.eclipse.e4.ui.css.core/src/org/eclipse/e4/ui/css/core/css2/CSS2FontPropertiesHelpers.java index 1cd6153d52c..53dd79eec8f 100644 --- a/bundles/org.eclipse.e4.ui.css.core/src/org/eclipse/e4/ui/css/core/css2/CSS2FontPropertiesHelpers.java +++ b/bundles/org.eclipse.e4.ui.css.core/src/org/eclipse/e4/ui/css/core/css2/CSS2FontPropertiesHelpers.java @@ -36,9 +36,6 @@ public class CSS2FontPropertiesHelpers { /** * Get {@link CSS2FontProperties} from {@link CSSElementContext} context. - * - * @param control - * @return */ public static CSS2FontProperties getCSS2FontProperties(CSSElementContext context) { // Search into Data of context if CSS2FontProperties exist. diff --git a/bundles/org.eclipse.e4.ui.css.core/src/org/eclipse/e4/ui/css/core/css2/CSSBorderPropertiesHelpers.java b/bundles/org.eclipse.e4.ui.css.core/src/org/eclipse/e4/ui/css/core/css2/CSSBorderPropertiesHelpers.java index e79073d7ab9..f435d5ce901 100644 --- a/bundles/org.eclipse.e4.ui.css.core/src/org/eclipse/e4/ui/css/core/css2/CSSBorderPropertiesHelpers.java +++ b/bundles/org.eclipse.e4.ui.css.core/src/org/eclipse/e4/ui/css/core/css2/CSSBorderPropertiesHelpers.java @@ -29,10 +29,6 @@ public class CSSBorderPropertiesHelpers { /** * Update the property of borderProperties instance * with the value. - * - * @param border - * @param property - * @param value */ public static void updateCSSProperty(CSSBorderProperties borderProperties, String property, CSSValue value) { switch (property) { diff --git a/bundles/org.eclipse.e4.ui.css.core/src/org/eclipse/e4/ui/css/core/dom/ElementAdapter.java b/bundles/org.eclipse.e4.ui.css.core/src/org/eclipse/e4/ui/css/core/dom/ElementAdapter.java index 054cd66feaa..24262ed866c 100644 --- a/bundles/org.eclipse.e4.ui.css.core/src/org/eclipse/e4/ui/css/core/dom/ElementAdapter.java +++ b/bundles/org.eclipse.e4.ui.css.core/src/org/eclipse/e4/ui/css/core/dom/ElementAdapter.java @@ -54,8 +54,6 @@ public ElementAdapter(Object nativeWidget, CSSEngine engine) { /** * Add static pseudo instance - * - * @param instance */ public void addStaticPseudoInstance(String pseudoE) { if (staticPseudoInstances == null) { diff --git a/bundles/org.eclipse.e4.ui.css.core/src/org/eclipse/e4/ui/css/core/engine/CSSEngine.java b/bundles/org.eclipse.e4.ui.css.core/src/org/eclipse/e4/ui/css/core/engine/CSSEngine.java index 3b358e29cef..76450e133c7 100644 --- a/bundles/org.eclipse.e4.ui.css.core/src/org/eclipse/e4/ui/css/core/engine/CSSEngine.java +++ b/bundles/org.eclipse.e4.ui.css.core/src/org/eclipse/e4/ui/css/core/engine/CSSEngine.java @@ -120,10 +120,6 @@ public interface CSSEngine { /** * Parse CSSValue from InputStream stream. - * - * @param reader - * @return - * @throws IOException */ CSSValue parsePropertyValue(InputStream stream) throws IOException; @@ -185,11 +181,6 @@ public interface CSSEngine { /** * Check if the selector matches the object node. - * - * @param selector - * @param element - * @param pseudo - * @return */ boolean matches(Selector selector, Object node, String pseudo); @@ -252,11 +243,6 @@ public interface CSSEngine { /** * Parse and apply style declaration from InputSource source. - * - * @param node - * @param source - * @return - * @throws IOException */ CSSStyleDeclaration parseAndApplyStyleDeclaration(Object node, InputSource sourcee) throws IOException; @@ -367,11 +353,6 @@ ICSSPropertyHandler applyCSSProperty(Object node, String property, CSSValue valu /** * Retrieve String of {@link CSSValue} of the CSS property of * the node. - * - * @param widget - * @param property - * @param pseudo - * @return */ String retrieveCSSProperty(Object node, String property, String pseudo); @@ -393,9 +374,6 @@ ICSSPropertyHandler applyCSSProperty(Object node, String property, CSSValue valu /** * Get default {@link CSSStyleDeclaration} of the node for * pseudo element pseudoE which can be null. - * - * @param element - * @return */ CSSStyleDeclaration getDefaultStyleDeclaration(Object node, String pseudoE); diff --git a/bundles/org.eclipse.e4.ui.css.core/src/org/eclipse/e4/ui/css/core/impl/engine/AbstractCSSEngine.java b/bundles/org.eclipse.e4.ui.css.core/src/org/eclipse/e4/ui/css/core/impl/engine/AbstractCSSEngine.java index 691235e33af..38e56346a4e 100644 --- a/bundles/org.eclipse.e4.ui.css.core/src/org/eclipse/e4/ui/css/core/impl/engine/AbstractCSSEngine.java +++ b/bundles/org.eclipse.e4.ui.css.core/src/org/eclipse/e4/ui/css/core/impl/engine/AbstractCSSEngine.java @@ -822,7 +822,6 @@ protected Collection getCSSPropertyHandlers(String property /** * Return the set of property names and handlers for the provided node. * - * @param node * @return the property names and handlers */ @Override diff --git a/bundles/org.eclipse.e4.ui.css.swt/src/org/eclipse/e4/ui/css/swt/dom/WidgetElement.java b/bundles/org.eclipse.e4.ui.css.swt/src/org/eclipse/e4/ui/css/swt/dom/WidgetElement.java index 42d8b19c36e..791e9270898 100644 --- a/bundles/org.eclipse.e4.ui.css.swt/src/org/eclipse/e4/ui/css/swt/dom/WidgetElement.java +++ b/bundles/org.eclipse.e4.ui.css.swt/src/org/eclipse/e4/ui/css/swt/dom/WidgetElement.java @@ -119,7 +119,7 @@ public static void applyStyles(Widget widget, /** * Convenience method for setting the CSS engine responsible for a display. * - * @param widget + * @param display * SWT display which is styled by an engine * @param engine * Engine to be associated with the display 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 dd592b97f49..3ae12a48b86 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 @@ -51,9 +51,6 @@ public class CSSSWTFontHelper { * Get CSS2FontProperties from Control stored into Data of Control. If * CSS2FontProperties doesn't exist, create it from Font of Control and * store it into Data of Control. - * - * @param control - * @return */ public static CSS2FontProperties getCSS2FontProperties(Widget widget, Font font, CSSElementContext context) { @@ -104,7 +101,6 @@ public static CSS2FontProperties getCSS2FontProperties(Font font, * Build CSS2FontProperties from SWT Font. * * @param font - * @return */ public static CSS2FontProperties getCSS2FontProperties(Font font) { // Create CSS Font Properties @@ -132,7 +128,6 @@ public static CSS2FontProperties getCSS2FontProperties(Font font) { * CSS2FontProperties instance into ClientProperty of JComponent. * * @param component - * @return */ public static Font getFont(CSS2FontProperties fontProperties, Control control) { @@ -151,7 +146,6 @@ public static Font getFont(CSS2FontProperties fontProperties, * * @param fontProperties * @param oldFontData - * @return */ public static FontData getFontData(CSS2FontProperties fontProperties, FontData oldFontData) { FontData newFontData = new FontData(); @@ -234,7 +228,6 @@ private static FontData[] findFontDataByDefinition(CSSPrimitiveValue cssFontFami * * @param fontProperties * @param fontData - * @return */ public static int getSWTStyle(CSS2FontProperties fontProperties, FontData fontData) { @@ -271,7 +264,6 @@ public static int getSWTStyle(CSS2FontProperties fontProperties, * Return CSS Value font-family from the widget's font, if it has a font * * @param widget - * @return */ public static String getFontFamily(Widget widget) { return getFontFamily(getFont(widget)); @@ -281,7 +273,6 @@ public static String getFontFamily(Widget widget) { * Return CSS Value font-family from SWT Font * * @param font - * @return */ public static String getFontFamily(Font font) { FontData fontData = getFirstFontData(font); @@ -300,7 +291,6 @@ public static String getFontFamily(FontData fontData) { * Return CSS Value font-size the widget's font, if it has a font * * @param widget - * @return */ public static String getFontSize(Widget widget) { return getFontSize(getFont(widget)); @@ -310,7 +300,6 @@ public static String getFontSize(Widget widget) { * Return CSS Value font-size from SWT Font * * @param font - * @return */ public static String getFontSize(Font font) { FontData fontData = getFirstFontData(font); @@ -328,7 +317,6 @@ public static String getFontSize(FontData fontData) { * Return CSS Value font-style from the widget's font, if it has a font * * @param widget - * @return */ public static String getFontStyle(Widget widget) { return getFontStyle(getFont(widget)); @@ -338,7 +326,6 @@ public static String getFontStyle(Widget widget) { * Return CSS Value font-style from SWT Font * * @param font - * @return */ public static String getFontStyle(Font font) { FontData fontData = getFirstFontData(font); @@ -360,9 +347,6 @@ public static boolean isItalic(FontData fontData) { /** * Return CSS Value font-weight from the widget's font, if it has a font - * - * @param widget - * @return */ public static String getFontWeight(Widget widget) { return getFontWeight(getFont(widget)); @@ -370,9 +354,6 @@ public static String getFontWeight(Widget widget) { /** * Return CSS Value font-weight from Control Font - * - * @param font - * @return */ public static String getFontWeight(Font font) { FontData fontData = getFirstFontData(font); @@ -394,9 +375,6 @@ public static boolean isBold(FontData fontData) { /** * Return CSS Value font-family from Control Font - * - * @param control - * @return */ public static String getFontComposite(Control control) { return getFontComposite(control.getFont()); @@ -404,9 +382,6 @@ public static String getFontComposite(Control control) { /** * Return CSS Value font-family from SWT Font - * - * @param font - * @return */ public static String getFontComposite(Font font) { FontData fontData = getFirstFontData(font); @@ -434,9 +409,6 @@ public static String getFontComposite(FontData fontData) { /** * Return first FontData from Control Font. - * - * @param control - * @return */ public static FontData getFirstFontData(Control control) { Font font = control.getFont(); @@ -449,9 +421,6 @@ public static FontData getFirstFontData(Control control) { /** * * Return first FontData from SWT Font. - * - * @param font - * @return */ public static FontData getFirstFontData(Font font) { FontData[] fontDatas = !font.isDisposed() ? font.getFontData() : null; diff --git a/bundles/org.eclipse.e4.ui.css.swt/src/org/eclipse/e4/ui/css/swt/helpers/SWTStyleHelpers.java b/bundles/org.eclipse.e4.ui.css.swt/src/org/eclipse/e4/ui/css/swt/helpers/SWTStyleHelpers.java index 7355e4a215d..fbdf855cbbf 100644 --- a/bundles/org.eclipse.e4.ui.css.swt/src/org/eclipse/e4/ui/css/swt/helpers/SWTStyleHelpers.java +++ b/bundles/org.eclipse.e4.ui.css.swt/src/org/eclipse/e4/ui/css/swt/helpers/SWTStyleHelpers.java @@ -28,9 +28,6 @@ public class SWTStyleHelpers { /** * Return SWT style constant from {@link Widget} widget as * String. Each SWT style are separate with space character. - * - * @param style - * @return */ public static String getSWTWidgetStyleAsString(Widget widget) { if (widget.isDisposed()) { @@ -44,7 +41,6 @@ public static String getSWTWidgetStyleAsString(Widget widget) { * are separate with separator String. * * @param style - * @return */ public static String getSWTWidgetStyleAsString(int style, String separator) { if (style == 0) { diff --git a/bundles/org.eclipse.e4.ui.progress/src/org/eclipse/e4/ui/progress/internal/AnimationItem.java b/bundles/org.eclipse.e4.ui.progress/src/org/eclipse/e4/ui/progress/internal/AnimationItem.java index 505e13c4821..eeee0444e2d 100644 --- a/bundles/org.eclipse.e4.ui.progress/src/org/eclipse/e4/ui/progress/internal/AnimationItem.java +++ b/bundles/org.eclipse.e4.ui.progress/src/org/eclipse/e4/ui/progress/internal/AnimationItem.java @@ -54,9 +54,6 @@ public void animationStart() { /** * Create a new instance of the receiver. - * - * @param workbenchWindow - * the window being created */ public AnimationItem(AnimationManager animationManager) { this.animationManager = animationManager; @@ -135,11 +132,4 @@ public int getPreferredWidth() { void setAnimationContainer(IAnimationContainer container) { this.animationContainer = container; } - - /** - * @return Returns the window. - */ -// public WorkbenchWindow getWindow() { -// return window; -// } } diff --git a/bundles/org.eclipse.e4.ui.progress/src/org/eclipse/e4/ui/progress/internal/ProgressRegion.java b/bundles/org.eclipse.e4.ui.progress/src/org/eclipse/e4/ui/progress/internal/ProgressRegion.java index fb34bea2eba..3afb9cd62e7 100644 --- a/bundles/org.eclipse.e4.ui.progress/src/org/eclipse/e4/ui/progress/internal/ProgressRegion.java +++ b/bundles/org.eclipse.e4.ui.progress/src/org/eclipse/e4/ui/progress/internal/ProgressRegion.java @@ -74,9 +74,6 @@ public ProgressRegion() { * * @param parent * The parent widget of the composite. - * @param window - * The WorkbenchWindow this is in. - * @return Control */ @PostConstruct public Control createContents(Composite parent) { diff --git a/bundles/org.eclipse.e4.ui.workbench.addons.swt/src/org/eclipse/e4/ui/workbench/addons/dndaddon/DragAgent.java b/bundles/org.eclipse.e4.ui.workbench.addons.swt/src/org/eclipse/e4/ui/workbench/addons/dndaddon/DragAgent.java index 6ce39e97cb6..4d87b8aadf9 100644 --- a/bundles/org.eclipse.e4.ui.workbench.addons.swt/src/org/eclipse/e4/ui/workbench/addons/dndaddon/DragAgent.java +++ b/bundles/org.eclipse.e4.ui.workbench.addons.swt/src/org/eclipse/e4/ui/workbench/addons/dndaddon/DragAgent.java @@ -80,9 +80,6 @@ public boolean canDrag(DnDInfo info) { /** * Start a drag operation on the given element. - * - * @param element - * The element to drag */ public void dragStart(DnDInfo info) { // cache a placeholder where the element started (NOTE: this also prevents the parent from diff --git a/bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/ui/workbench/renderers/swt/TrimmedPartLayout.java b/bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/ui/workbench/renderers/swt/TrimmedPartLayout.java index 7d8e3769829..65c4040c58c 100644 --- a/bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/ui/workbench/renderers/swt/TrimmedPartLayout.java +++ b/bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/ui/workbench/renderers/swt/TrimmedPartLayout.java @@ -92,8 +92,6 @@ public class TrimmedPartLayout extends Layout { /** * This layout is used to support parts that want trim for their containing * composites. - * - * @param trimOwner */ public TrimmedPartLayout(Composite parent) { clientArea = new Composite(parent, SWT.NONE); @@ -181,11 +179,6 @@ protected void layout(Composite composite, boolean flushCache) { } } - /** - * @param top2 - * @param b - * @return - */ public Composite getTrimComposite(Composite parent, int side) { switch (side) { case SWT.TOP: diff --git a/bundles/org.eclipse.e4.ui.workbench.swt/src/org/eclipse/e4/ui/internal/workbench/swt/CSSRenderingUtils.java b/bundles/org.eclipse.e4.ui.workbench.swt/src/org/eclipse/e4/ui/internal/workbench/swt/CSSRenderingUtils.java index 3195ebd0978..0bb6ca74806 100644 --- a/bundles/org.eclipse.e4.ui.workbench.swt/src/org/eclipse/e4/ui/internal/workbench/swt/CSSRenderingUtils.java +++ b/bundles/org.eclipse.e4.ui.workbench.swt/src/org/eclipse/e4/ui/internal/workbench/swt/CSSRenderingUtils.java @@ -218,11 +218,6 @@ public CSSValue getCSSValue(Control styleControl, String className, return styleDeclarations.getPropertyCSSValue(attributeName); } - /** - * @param string - * @param string2 - * @return - */ public Image createImage(Control styleControl, String classId, String attName, Integer[] frameInts) { Image image = null; diff --git a/bundles/org.eclipse.e4.ui.workbench.swt/src/org/eclipse/e4/ui/workbench/swt/internal/copy/ShowViewDialog.java b/bundles/org.eclipse.e4.ui.workbench.swt/src/org/eclipse/e4/ui/workbench/swt/internal/copy/ShowViewDialog.java index 18cec6f5a69..96196011d16 100644 --- a/bundles/org.eclipse.e4.ui.workbench.swt/src/org/eclipse/e4/ui/workbench/swt/internal/copy/ShowViewDialog.java +++ b/bundles/org.eclipse.e4.ui.workbench.swt/src/org/eclipse/e4/ui/workbench/swt/internal/copy/ShowViewDialog.java @@ -86,11 +86,6 @@ public class ShowViewDialog extends Dialog implements /** * Constructs a new ShowViewDialog. - * - * @param window - * the workbench window - * @param viewReg - * the view registry */ public ShowViewDialog(Shell shell, MApplication application, IEclipseContext context) { diff --git a/bundles/org.eclipse.e4.ui.workbench.swt/src/org/eclipse/e4/ui/workbench/swt/internal/copy/ViewComparator.java b/bundles/org.eclipse.e4.ui.workbench.swt/src/org/eclipse/e4/ui/workbench/swt/internal/copy/ViewComparator.java index 0d2b0570198..d0a6de4e07a 100644 --- a/bundles/org.eclipse.e4.ui.workbench.swt/src/org/eclipse/e4/ui/workbench/swt/internal/copy/ViewComparator.java +++ b/bundles/org.eclipse.e4.ui.workbench.swt/src/org/eclipse/e4/ui/workbench/swt/internal/copy/ViewComparator.java @@ -26,9 +26,6 @@ public class ViewComparator extends ViewerComparator { /** * ViewSorter constructor comment. - * - * @param reg - * an IViewRegistry */ public ViewComparator() { super(); diff --git a/bundles/org.eclipse.e4.ui.workbench.swt/src/org/eclipse/e4/ui/workbench/swt/internal/copy/ViewLabelProvider.java b/bundles/org.eclipse.e4.ui.workbench.swt/src/org/eclipse/e4/ui/workbench/swt/internal/copy/ViewLabelProvider.java index bc050b65c51..337b959d202 100644 --- a/bundles/org.eclipse.e4.ui.workbench.swt/src/org/eclipse/e4/ui/workbench/swt/internal/copy/ViewLabelProvider.java +++ b/bundles/org.eclipse.e4.ui.workbench.swt/src/org/eclipse/e4/ui/workbench/swt/internal/copy/ViewLabelProvider.java @@ -58,13 +58,6 @@ public class ViewLabelProvider extends ColumnLabelProvider { private IEclipseContext context; - /** - * @param window - * the workbench window - * @param dimmedForeground - * the dimmed foreground color to use for views that are already - * open - */ public ViewLabelProvider(IEclipseContext context) { this.context = context; } diff --git a/bundles/org.eclipse.e4.ui.workbench3/src/org/eclipse/ui/testing/dumps/TimeoutDumpTimer.java b/bundles/org.eclipse.e4.ui.workbench3/src/org/eclipse/ui/testing/dumps/TimeoutDumpTimer.java index 9027592d22a..5e7de243439 100644 --- a/bundles/org.eclipse.e4.ui.workbench3/src/org/eclipse/ui/testing/dumps/TimeoutDumpTimer.java +++ b/bundles/org.eclipse.e4.ui.workbench3/src/org/eclipse/ui/testing/dumps/TimeoutDumpTimer.java @@ -91,7 +91,6 @@ private TimeoutDumpTimer(String timeoutArg, File outputDirectory) { * * @param timeoutArg the value of the -timeout argument from the command * line - * @param outputDirectory where screenshots end up */ public static void startTimeoutDumpTimer(String timeoutArg) { startTimeoutDumpTimer(timeoutArg, null); diff --git a/bundles/org.eclipse.ui.browser/src/org/eclipse/ui/internal/browser/WebBrowserViewDropAdapter.java b/bundles/org.eclipse.ui.browser/src/org/eclipse/ui/internal/browser/WebBrowserViewDropAdapter.java index dd29c0cbd7e..4690b0adab5 100644 --- a/bundles/org.eclipse.ui.browser/src/org/eclipse/ui/internal/browser/WebBrowserViewDropAdapter.java +++ b/bundles/org.eclipse.ui.browser/src/org/eclipse/ui/internal/browser/WebBrowserViewDropAdapter.java @@ -152,8 +152,6 @@ protected boolean performDrop(Object data) { * Subclasses must implement this method to define which drops make sense. *

* - * @param target the object that the mouse is currently hovering over, or - * null if the mouse is hovering over empty space * @param operation the current drag operation (copy, move, etc.) * @param transferType the current transfer type * @return true if the drop is valid, and false diff --git a/bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/RelativePathVariableGroup.java b/bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/RelativePathVariableGroup.java index 1cb22220d75..92fb284bf1e 100644 --- a/bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/RelativePathVariableGroup.java +++ b/bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/RelativePathVariableGroup.java @@ -52,24 +52,13 @@ public class RelativePathVariableGroup { private String label; public interface IModel { - /** - * @return - */ IResource getResource(); - /** - * @param object - */ void setVariable(String string); - /** - * @return - */ String getVariable(); } - /** - * - */ + public RelativePathVariableGroup(IModel content) { this.content = content; } diff --git a/bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/views/markers/CompatibilityMarkerFieldFilterGroup.java b/bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/views/markers/CompatibilityMarkerFieldFilterGroup.java index 17a7e2a2ca4..80d3002e068 100644 --- a/bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/views/markers/CompatibilityMarkerFieldFilterGroup.java +++ b/bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/views/markers/CompatibilityMarkerFieldFilterGroup.java @@ -30,9 +30,6 @@ public class CompatibilityMarkerFieldFilterGroup extends MarkerFieldFilterGroup /** * Create a new instance of the receiver based on the ProblemFilter. - * - * @param filter - * @param cachedMarkerBuilder */ public CompatibilityMarkerFieldFilterGroup(ProblemFilter filter, MarkerContentGenerator generator) { diff --git a/examples/org.eclipse.ui.examples.contributions/src/org/eclipse/ui/examples/contributions/model/PersonWizardPage.java b/examples/org.eclipse.ui.examples.contributions/src/org/eclipse/ui/examples/contributions/model/PersonWizardPage.java index a9388d51f72..fa309a0a5f7 100644 --- a/examples/org.eclipse.ui.examples.contributions/src/org/eclipse/ui/examples/contributions/model/PersonWizardPage.java +++ b/examples/org.eclipse.ui.examples.contributions/src/org/eclipse/ui/examples/contributions/model/PersonWizardPage.java @@ -39,9 +39,6 @@ public class PersonWizardPage extends WizardPage implements Listener { private Text givennameText; private Text idText; - /** - * @param pageName - */ public PersonWizardPage(IServiceLocator locator) { super("personWizardPage"); //$NON-NLS-1$ this.locator = locator;