Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/IPDOMIndexer.java')
-rw-r--r--core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/IPDOMIndexer.java16
1 files changed, 8 insertions, 8 deletions
diff --git a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/IPDOMIndexer.java b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/IPDOMIndexer.java
index d6dcef71531..d2525dcd550 100644
--- a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/IPDOMIndexer.java
+++ b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/IPDOMIndexer.java
@@ -34,33 +34,33 @@ public interface IPDOMIndexer {
* Returns the project associated with the indexer.
*/
public ICProject getProject();
-
+
/**
* Returns the unique ID of type of this indexer
*/
public String getID();
-
+
/**
* Returns the value of a property.
* @since 4.0
*/
public String getProperty(String key);
-
+
/**
- * Clients are not allowed to call this method, it is called by the framework.
+ * Clients are not allowed to call this method, it is called by the framework.
* @since 4.0
*/
public void setProperties(Properties props);
-
+
/**
- * Clients are not allowed to call this method, it is called by the framework.
+ * Clients are not allowed to call this method, it is called by the framework.
* Used to check whether we need to reindex a project.
* @since 4.0
*/
public boolean needsToRebuildForProperties(Properties props);
-
+
/**
- * Clients are not allowed to call this method, it is called by the framework.
+ * Clients are not allowed to call this method, it is called by the framework.
* Creates a task that handles the changes.
* @since 4.0
*/

Back to the top