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:
parent
9587829cb4
commit
2fa73f9d8f
1 changed files with 58 additions and 60 deletions
|
@ -180,7 +180,8 @@ public interface ICProjectDescriptionManager {
|
|||
* @see ICProjectDescriptionManager#createProjectDescription(IProject, boolean)
|
||||
* @param project
|
||||
* @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);
|
||||
|
||||
|
@ -196,16 +197,14 @@ public interface ICProjectDescriptionManager {
|
|||
void updateProjectDescriptions(IProject projects[], IProgressMonitor monitor) throws CoreException;
|
||||
|
||||
/**
|
||||
* answers whether the given project is a new-style project, i.e. CConfigurationDataProvider-driven
|
||||
* @param project
|
||||
* @return
|
||||
* @return whether the given project is a new-style project, i.e. CConfigurationDataProvider-driven
|
||||
*/
|
||||
boolean isNewStyleProject(IProject project);
|
||||
|
||||
/**
|
||||
* answers whether the given project is a new-style project, i.e. CConfigurationDataProvider-driven
|
||||
* @param des
|
||||
* @return
|
||||
* @return whether the given project is a new-style project, i.e. CConfigurationDataProvider-driven
|
||||
*/
|
||||
boolean isNewStyleProject(ICProjectDescription des);
|
||||
|
||||
|
@ -231,13 +230,13 @@ public interface ICProjectDescriptionManager {
|
|||
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
|
||||
* 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
|
||||
* @param write
|
||||
* @return
|
||||
* @param write if true, the writable preferences copy is returned.
|
||||
* @return the workspace project description preferences
|
||||
*
|
||||
* @see #setProjectDescriptionWorkspacePreferences(ICProjectDescriptionWorkspacePreferences, boolean, IProgressMonitor)
|
||||
*/
|
||||
|
@ -249,9 +248,8 @@ public interface ICProjectDescriptionManager {
|
|||
* @param prefs - preferences to be applied
|
||||
* @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
|
||||
*
|
||||
* @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);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue