1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

cleanup: JavaDoc warnings + extra spaces removed

This commit is contained in:
Andrew Gvozdev 2010-02-16 15:27:11 +00:00
parent 9587829cb4
commit 2fa73f9d8f

View file

@ -180,7 +180,8 @@ public interface ICProjectDescriptionManager {
* @see ICProjectDescriptionManager#createProjectDescription(IProject, boolean) * @see ICProjectDescriptionManager#createProjectDescription(IProject, boolean)
* @param project * @param project
* @param flags * @param flags
* @return * @return {@link ICProjectDescription} or null if the project does not contain the
* CDT data associated with it.
*/ */
ICProjectDescription getProjectDescription(IProject project, int flags); ICProjectDescription getProjectDescription(IProject project, int flags);
@ -196,16 +197,14 @@ public interface ICProjectDescriptionManager {
void updateProjectDescriptions(IProject projects[], IProgressMonitor monitor) throws CoreException; void updateProjectDescriptions(IProject projects[], IProgressMonitor monitor) throws CoreException;
/** /**
* answers whether the given project is a new-style project, i.e. CConfigurationDataProvider-driven
* @param project * @param project
* @return * @return whether the given project is a new-style project, i.e. CConfigurationDataProvider-driven
*/ */
boolean isNewStyleProject(IProject project); boolean isNewStyleProject(IProject project);
/** /**
* answers whether the given project is a new-style project, i.e. CConfigurationDataProvider-driven
* @param des * @param des
* @return * @return whether the given project is a new-style project, i.e. CConfigurationDataProvider-driven
*/ */
boolean isNewStyleProject(ICProjectDescription des); boolean isNewStyleProject(ICProjectDescription des);
@ -231,13 +230,13 @@ public interface ICProjectDescriptionManager {
void removeCProjectDescriptionListener(ICProjectDescriptionListener listener); void removeCProjectDescriptionListener(ICProjectDescriptionListener listener);
/** /**
* returns the workspace project description preferences. * Returns the workspace project description preferences.
* if the <code>write</code> argument is <code>false</code>, the returned preferences are read-only * if the <code>write</code> argument is <code>false</code>, the returned preferences are read-only
* otherwise the preferences are writable. * otherwise the preferences are writable.
* NOTE: the changes made to the preferences will NOT get applied untill the preferences are set via the {@link #setProjectDescriptionWorkspacePreferences(ICProjectDescriptionWorkspacePreferences, boolean, IProgressMonitor)} * NOTE: the changes made to the preferences will NOT get applied until the preferences are set via the {@link #setProjectDescriptionWorkspacePreferences(ICProjectDescriptionWorkspacePreferences, boolean, IProgressMonitor)}
* method * method
* @param write * @param write if true, the writable preferences copy is returned.
* @return * @return the workspace project description preferences
* *
* @see #setProjectDescriptionWorkspacePreferences(ICProjectDescriptionWorkspacePreferences, boolean, IProgressMonitor) * @see #setProjectDescriptionWorkspacePreferences(ICProjectDescriptionWorkspacePreferences, boolean, IProgressMonitor)
*/ */
@ -249,9 +248,8 @@ public interface ICProjectDescriptionManager {
* @param prefs - preferences to be applied * @param prefs - preferences to be applied
* @param updateProjects - if <code>true</code> all project descriptions within the workspace will be updated * @param updateProjects - if <code>true</code> all project descriptions within the workspace will be updated
* to reflect/use the settings specified with the given preferences * to reflect/use the settings specified with the given preferences
*
* @param monitor * @param monitor
* @return * @return {@code true} if new {@code prefs} differ from the old ones, i.e. preferences changed
*/ */
boolean setProjectDescriptionWorkspacePreferences(ICProjectDescriptionWorkspacePreferences prefs, boolean updateProjects, IProgressMonitor monitor); boolean setProjectDescriptionWorkspacePreferences(ICProjectDescriptionWorkspacePreferences prefs, boolean updateProjects, IProgressMonitor monitor);