1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 14:42:11 +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
*/

View file

@ -107,16 +107,10 @@ public class DeleteTargetAction extends SelectionListenerAction {
return super.updateSelection(selection) && canDelete();
}
/**
* @return
*/
private List<?> getSelectedElements() {
return getStructuredSelection().toList();
}
/**
* @return
*/
private boolean canDelete() {
List<?> elements = getSelectedElements();
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.
* @noinstantiate This class is not intended to be instantiated by clients.
*/
@Deprecated
public class ConvertToMakeProjectWizardPage extends ConvertProjectWizardPage {
private static final String WZ_TITLE = "WizardMakeProjectConversion.title"; //$NON-NLS-1$
@ -54,7 +55,6 @@ public class ConvertToMakeProjectWizardPage extends ConvertProjectWizardPage {
/**
* Constructor for ConvertToStdMakeProjectWizardPage.
* @param pageName
*/
public ConvertToMakeProjectWizardPage(String pageName) {
super(pageName);
@ -80,9 +80,6 @@ public class ConvertToMakeProjectWizardPage extends ConvertProjectWizardPage {
/**
* Method isCandidate returns true for all projects.
*
* @param project
* @return boolean
*/
@Override
public boolean isCandidate(IProject project) {