mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-23 14:42:11 +02:00
JavaDoc warnings
This commit is contained in:
parent
fec0fa3fad
commit
7f2357c3db
3 changed files with 2 additions and 11 deletions
|
@ -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
|
||||
*/
|
||||
|
|
|
@ -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) {
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Add table
Reference in a new issue