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/IVirtualItemValidator.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/provisional/IVirtualItemValidator.java16
1 files changed, 8 insertions, 8 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/provisional/IVirtualItemValidator.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/provisional/IVirtualItemValidator.java
index b460c486c..2ed6682e7 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/provisional/IVirtualItemValidator.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/provisional/IVirtualItemValidator.java
@@ -4,7 +4,7 @@
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
- *
+ *
* Contributors:
* Wind River Systems - initial API and implementation
*******************************************************************************/
@@ -13,25 +13,25 @@ package org.eclipse.debug.internal.ui.viewers.model.provisional;
/**
* A validator to be used with a VirtualTreeModelViewer to determine which viewer
- * items should be updated by the viewer.
- *
+ * items should be updated by the viewer.
+ *
* @see VirtualTreeModelViewer
* @since 3.8
*/
public interface IVirtualItemValidator {
-
+
/**
- * Allows the validator to determine whether the given item is to be deemed
+ * Allows the validator to determine whether the given item is to be deemed
* visible in the virtual tree.
- *
+ *
* @param item Item to be tested.
* @return returns true if the item should be considered visible.
*/
public boolean isItemVisible(VirtualItem item);
-
+
/**
* Indicates that the viewer requested to reveal the given item in viewer.
- *
+ *
* @param item Item to show.
*/
public void showItem(VirtualItem item);

Back to the top