Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/provisional')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/provisional/IAsynchronousContentAdapter.java4
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/provisional/IAsynchronousLabelAdapter.java2
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/provisional/IChildrenRequestMonitor.java4
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/provisional/IContainerRequestMonitor.java2
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/provisional/ILabelRequestMonitor.java10
5 files changed, 11 insertions, 11 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/provisional/IAsynchronousContentAdapter.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/provisional/IAsynchronousContentAdapter.java
index 68d47a7d2..638c76689 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/provisional/IAsynchronousContentAdapter.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/provisional/IAsynchronousContentAdapter.java
@@ -31,7 +31,7 @@ public interface IAsynchronousContentAdapter {
* @param context the context in which children have been requested
* @param monitor request monitor to report children to
*/
- public void retrieveChildren(Object parent, IPresentationContext context, IChildrenRequestMonitor result);
+ void retrieveChildren(Object parent, IPresentationContext context, IChildrenRequestMonitor result);
/**
* Asynchronously determines whether the given element contains children in the specified
@@ -43,6 +43,6 @@ public interface IAsynchronousContentAdapter {
* @param context the context in which children may exist
* @param monitor request monitor to report the result to
*/
- public void isContainer(Object element, IPresentationContext context, IContainerRequestMonitor result);
+ void isContainer(Object element, IPresentationContext context, IContainerRequestMonitor result);
}
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/provisional/IAsynchronousLabelAdapter.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/provisional/IAsynchronousLabelAdapter.java
index 518be81dc..833747fc5 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/provisional/IAsynchronousLabelAdapter.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/provisional/IAsynchronousLabelAdapter.java
@@ -31,7 +31,7 @@ public interface IAsynchronousLabelAdapter {
* @param context the context in which the label has been requested
* @param monitor request monitor to report the result to
*/
- public void retrieveLabel(Object object, IPresentationContext context, ILabelRequestMonitor result);
+ void retrieveLabel(Object object, IPresentationContext context, ILabelRequestMonitor result);
}
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/provisional/IChildrenRequestMonitor.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/provisional/IChildrenRequestMonitor.java
index 3f5646c0e..29621cf8c 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/provisional/IChildrenRequestMonitor.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/provisional/IChildrenRequestMonitor.java
@@ -26,12 +26,12 @@ public interface IChildrenRequestMonitor extends IStatusMonitor {
*
* @param child child to add
*/
- public void addChild(Object child);
+ void addChild(Object child);
/**
* Adds the given children to this request.
*
* @param children children to add
*/
- public void addChildren(Object[] children);
+ void addChildren(Object[] children);
}
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/provisional/IContainerRequestMonitor.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/provisional/IContainerRequestMonitor.java
index be1f3b36c..aa03a4258 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/provisional/IContainerRequestMonitor.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/provisional/IContainerRequestMonitor.java
@@ -27,6 +27,6 @@ public interface IContainerRequestMonitor extends IStatusMonitor {
*
* @param container whether an element contains children
*/
- public void setIsContainer(boolean container);
+ void setIsContainer(boolean container);
}
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/provisional/ILabelRequestMonitor.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/provisional/ILabelRequestMonitor.java
index 967d5ac5f..2329f9eec 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/provisional/ILabelRequestMonitor.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/provisional/ILabelRequestMonitor.java
@@ -30,34 +30,34 @@ public interface ILabelRequestMonitor extends IStatusMonitor {
*
* @param text
*/
- public void setLabels(String[] text);
+ void setLabels(String[] text);
/**
* Sets the font of the label.
*
* @param fontData
*/
- public void setFontDatas(FontData[] fontData);
+ void setFontDatas(FontData[] fontData);
/**
* Sets the image of the label.
*
* @param image
*/
- public void setImageDescriptors(ImageDescriptor[] image);
+ void setImageDescriptors(ImageDescriptor[] image);
/**
* Sets the foreground color of the label.
*
* @param foreground
*/
- public void setForegrounds(RGB[] foreground);
+ void setForegrounds(RGB[] foreground);
/**
* Sets the background color of the label.
*
* @param background
*/
- public void setBackgrounds(RGB[] background);
+ void setBackgrounds(RGB[] background);
}

Back to the top