mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-19 15:05:36 +02:00
Increased warning levels for ui-plugin, fixed warnings.
This commit is contained in:
parent
d9d5293cf4
commit
89abaeb3e8
1 changed files with 3 additions and 2 deletions
|
@ -13,6 +13,7 @@ package org.eclipse.cdt.core.model;
|
||||||
|
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
|
||||||
|
import org.eclipse.cdt.core.CCorePlugin;
|
||||||
import org.eclipse.core.resources.IProject;
|
import org.eclipse.core.resources.IProject;
|
||||||
import org.eclipse.core.resources.IResource;
|
import org.eclipse.core.resources.IResource;
|
||||||
import org.eclipse.core.runtime.IPath;
|
import org.eclipse.core.runtime.IPath;
|
||||||
|
@ -172,7 +173,7 @@ public interface ICProject extends IParent, IOpenable, ICElement {
|
||||||
* (key type: <code>String</code>; value type: <code>String</code>)
|
* (key type: <code>String</code>; value type: <code>String</code>)
|
||||||
* @see CCorePlugin#getDefaultOptions
|
* @see CCorePlugin#getDefaultOptions
|
||||||
*/
|
*/
|
||||||
Map getOptions(boolean inheritCCoreOptions);
|
Map<String,String> getOptions(boolean inheritCCoreOptions);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Helper method for setting one option value only. Equivalent to <code>Map options = this.getOptions(false); map.put(optionName, optionValue); this.setOptions(map)</code>
|
* Helper method for setting one option value only. Equivalent to <code>Map options = this.getOptions(false); map.put(optionName, optionValue); this.setOptions(map)</code>
|
||||||
|
@ -198,7 +199,7 @@ public interface ICProject extends IParent, IOpenable, ICElement {
|
||||||
* or <code>null</code> to flush all custom options (clients will automatically get the global CCorePlugin options).
|
* or <code>null</code> to flush all custom options (clients will automatically get the global CCorePlugin options).
|
||||||
* @see CCorePlugin#getDefaultOptions
|
* @see CCorePlugin#getDefaultOptions
|
||||||
*/
|
*/
|
||||||
void setOptions(Map newOptions);
|
void setOptions(Map<String, String> newOptions);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the list of entries for the project. This corresponds to the exact set
|
* Returns the list of entries for the project. This corresponds to the exact set
|
||||||
|
|
Loading…
Add table
Reference in a new issue