Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/tcmodification/IToolModification.java')
-rw-r--r--build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/tcmodification/IToolModification.java14
1 files changed, 7 insertions, 7 deletions
diff --git a/build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/tcmodification/IToolModification.java b/build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/tcmodification/IToolModification.java
index 642c79cf0f9..63eb48774fa 100644
--- a/build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/tcmodification/IToolModification.java
+++ b/build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/tcmodification/IToolModification.java
@@ -28,29 +28,29 @@ public interface IToolModification extends IModification {
* configuration
*/
CompatibilityStatus getCompatibilityStatus();
-
+
/**
- * returns the compatibility status for this tool,
+ * returns the compatibility status for this tool,
* i.e. true when the getCompatibilityStatus() returns an non-ERROR status,
* and false otherwise
- *
+ *
* for project tools specifies whether the tool is compatible
* with the configuration
* for system tools specifies whether the tool can be added to the
* configuration
*/
boolean isCompatible();
-
+
/**
- * returns the tool of the given Modification
+ * returns the tool of the given Modification
*/
ITool getTool();
-
+
/**
* specifies whether the current tools belongs to the resource configuration
*/
boolean isProjectTool();
-
+
/**
* returns the list of supported operations
*/

Back to the top