Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/memory/renderings/IVirtualContentListener.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/memory/renderings/IVirtualContentListener.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/memory/renderings/IVirtualContentListener.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/memory/renderings/IVirtualContentListener.java
index 86e3217f7..2fea25879 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/memory/renderings/IVirtualContentListener.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/memory/renderings/IVirtualContentListener.java
@@ -13,22 +13,22 @@ package org.eclipse.debug.internal.ui.views.memory.renderings;
public interface IVirtualContentListener {
- public int BUFFER_START = 0;
- public int BUFFER_END = 1;
+ int BUFFER_START = 0;
+ int BUFFER_END = 1;
/**
* Called when the viewer is at the beginning of its bufferred content
*/
- public void handledAtBufferStart();
+ void handledAtBufferStart();
/**
* Called when viewer is at the end of its bufferred content
*/
- public void handleAtBufferEnd();
+ void handleAtBufferEnd();
/**
* @return
*/
- public int getThreshold(int bufferEndOrStart);
+ int getThreshold(int bufferEndOrStart);
}

Back to the top