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/provisional/IViewerUpdate.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/provisional/IViewerUpdate.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/provisional/IViewerUpdate.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/provisional/IViewerUpdate.java
index 0df2ce637..633fd754c 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/provisional/IViewerUpdate.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/provisional/IViewerUpdate.java
@@ -26,14 +26,14 @@ public interface IViewerUpdate extends IRequest {
*
* @return context this update was requested in
*/
- public IPresentationContext getPresentationContext();
+ IPresentationContext getPresentationContext();
/**
* Returns the model element associated with this request.
*
* @return associated model element
*/
- public Object getElement();
+ Object getElement();
/**
* Returns the viewer tree path to the model element associated with this
@@ -41,7 +41,7 @@ public interface IViewerUpdate extends IRequest {
*
* @return tree path, possibly empty
*/
- public TreePath getElementPath();
+ TreePath getElementPath();
/**
* Returns the element that was the viewer input at the time the
@@ -50,5 +50,5 @@ public interface IViewerUpdate extends IRequest {
* @return viewer input element, possibly <code>null</code>
* @since 3.4
*/
- public Object getViewerInput();
+ Object getViewerInput();
}

Back to the top