1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-07 17:56:01 +02:00

JavaDoc warnings

This commit is contained in:
Andrew Gvozdev 2010-04-30 04:56:03 +00:00
parent fec0fa3fad
commit 7f2357c3db
3 changed files with 2 additions and 11 deletions

View file

@ -108,7 +108,7 @@ public abstract class AbstractTargetAction
} }
/** /**
* @return {@code} if the action is enabled or {@code false} otherwise. * @return {@code true} if the action is enabled or {@code false} otherwise.
* *
* @since 7.0 * @since 7.0
*/ */

View file

@ -107,16 +107,10 @@ public class DeleteTargetAction extends SelectionListenerAction {
return super.updateSelection(selection) && canDelete(); return super.updateSelection(selection) && canDelete();
} }
/**
* @return
*/
private List<?> getSelectedElements() { private List<?> getSelectedElements() {
return getStructuredSelection().toList(); return getStructuredSelection().toList();
} }
/**
* @return
*/
private boolean canDelete() { private boolean canDelete() {
List<?> elements = getSelectedElements(); List<?> elements = getSelectedElements();
for (Object element : elements) { for (Object element : elements) {

View file

@ -47,6 +47,7 @@ import org.eclipse.ui.wizards.newresource.BasicNewResourceWizard;
* @noextend This class is not intended to be subclassed by clients. * @noextend This class is not intended to be subclassed by clients.
* @noinstantiate This class is not intended to be instantiated by clients. * @noinstantiate This class is not intended to be instantiated by clients.
*/ */
@Deprecated
public class ConvertToMakeProjectWizardPage extends ConvertProjectWizardPage { public class ConvertToMakeProjectWizardPage extends ConvertProjectWizardPage {
private static final String WZ_TITLE = "WizardMakeProjectConversion.title"; //$NON-NLS-1$ private static final String WZ_TITLE = "WizardMakeProjectConversion.title"; //$NON-NLS-1$
@ -54,7 +55,6 @@ public class ConvertToMakeProjectWizardPage extends ConvertProjectWizardPage {
/** /**
* Constructor for ConvertToStdMakeProjectWizardPage. * Constructor for ConvertToStdMakeProjectWizardPage.
* @param pageName
*/ */
public ConvertToMakeProjectWizardPage(String pageName) { public ConvertToMakeProjectWizardPage(String pageName) {
super(pageName); super(pageName);
@ -80,9 +80,6 @@ public class ConvertToMakeProjectWizardPage extends ConvertProjectWizardPage {
/** /**
* Method isCandidate returns true for all projects. * Method isCandidate returns true for all projects.
*
* @param project
* @return boolean
*/ */
@Override @Override
public boolean isCandidate(IProject project) { public boolean isCandidate(IProject project) {