Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/settings/model/IModificationContext.java')
-rw-r--r--core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/settings/model/IModificationContext.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/settings/model/IModificationContext.java b/core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/settings/model/IModificationContext.java
index 556bd95d25e..ed753503af9 100644
--- a/core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/settings/model/IModificationContext.java
+++ b/core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/settings/model/IModificationContext.java
@@ -21,19 +21,19 @@ import org.eclipse.core.runtime.CoreException;
public interface IModificationContext {
public static final int CFG_DATA_SETTINGS_UNMODIFIED = 1;
public static final int CFG_DATA_STORAGE_UNMODIFIED = 1 << 1;
-
+
IProject getProject();
-
+
IProjectDescription getEclipseProjectDescription() throws CoreException;
void setEclipseProjectDescription(IProjectDescription eDes) throws CoreException;
void addWorkspaceRunnable(IWorkspaceRunnable runnable);
-
+
/**
* the CConfigurationDataProvider can call this method to indicate the
* CConfigurationData settings state.
- *
+ *
* @param flags
*/
void setConfigurationSettingsFlags(int flags);
@@ -41,7 +41,7 @@ public interface IModificationContext {
/**
* returns true if the cache data gets re-applied, i.e. there were no changes to the
* current configuration data performed from the core side
- *
+ *
* @return boolean
*/
boolean isBaseDataCached();

Back to the top