Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/ILabelUpdateListener.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/ILabelUpdateListener.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/ILabelUpdateListener.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/ILabelUpdateListener.java
index b296064a0..075bb2433 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/ILabelUpdateListener.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/ILabelUpdateListener.java
@@ -22,13 +22,13 @@ public interface ILabelUpdateListener {
/**
* Notification that a sequence of viewer updates are starting.
*/
- public void labelUpdatesBegin();
+ void labelUpdatesBegin();
/**
* Notification that viewer updates are complete. Corresponds to
* a <code>viewerUpdatesBegin()</code> notification.
*/
- public void labelUpdatesComplete();
+ void labelUpdatesComplete();
/**
* Notification that a specific update has started within
@@ -36,7 +36,7 @@ public interface ILabelUpdateListener {
*
* @param update update
*/
- public void labelUpdateStarted(ILabelUpdate update);
+ void labelUpdateStarted(ILabelUpdate update);
/**
* Notification that a specific update has completed within a
@@ -44,5 +44,5 @@ public interface ILabelUpdateListener {
*
* @param update update
*/
- public void labelUpdateComplete(ILabelUpdate update);
+ void labelUpdateComplete(ILabelUpdate update);
}

Back to the top