Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'build/org.eclipse.cdt.autotools.ui/src/org/eclipse/cdt/internal/autotools/ui/properties/IPropertyChangeManager.java')
-rw-r--r--build/org.eclipse.cdt.autotools.ui/src/org/eclipse/cdt/internal/autotools/ui/properties/IPropertyChangeManager.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/build/org.eclipse.cdt.autotools.ui/src/org/eclipse/cdt/internal/autotools/ui/properties/IPropertyChangeManager.java b/build/org.eclipse.cdt.autotools.ui/src/org/eclipse/cdt/internal/autotools/ui/properties/IPropertyChangeManager.java
index d63c30f6985..1f257e76e87 100644
--- a/build/org.eclipse.cdt.autotools.ui/src/org/eclipse/cdt/internal/autotools/ui/properties/IPropertyChangeManager.java
+++ b/build/org.eclipse.cdt.autotools.ui/src/org/eclipse/cdt/internal/autotools/ui/properties/IPropertyChangeManager.java
@@ -19,25 +19,25 @@ public interface IPropertyChangeManager {
/**
* Add a project property listener for given project.
- *
+ *
* @param project the project to which the listener is interested
* @param listener the listener to notify
*/
void addProjectPropertyListener(IProject project, IProjectPropertyListener listener);
-
+
/**
* Remove a project property listener.
- *
+ *
* @param listener the listener to remove
*/
void removeProjectPropertyListener(IProject project, IProjectPropertyListener listener);
-
+
/**
* Notify all listeners of project that a property has changed.
- *
+ *
* @param project the project for which the property has changed
* @param property the property that has changed
*/
void notifyPropertyListeners(IProject project, String property);
-
+
}

Back to the top