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/TreeModelViewerFilter.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/provisional/TreeModelViewerFilter.java16
1 files changed, 8 insertions, 8 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/provisional/TreeModelViewerFilter.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/provisional/TreeModelViewerFilter.java
index 57cdc7fda..b0f417e74 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/provisional/TreeModelViewerFilter.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/provisional/TreeModelViewerFilter.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
*******************************************************************************/
@@ -16,22 +16,22 @@ import org.eclipse.jface.viewers.ViewerFilter;
* Viewer filter for the Tree Model Viewer which allows more efficient filtering
* in the lazy viewer.
* <p>
- * The standard {@link ViewerFilter} class must be applied to all elements in the
+ * The standard {@link ViewerFilter} class must be applied to all elements in the
* tree, thus forcing the lazy viewer to retrieve all children of all elements and
* defeating the lazy loading behavior. This class adds an {@link #isApplicable(ITreeModelViewer, Object)}
- * method, which can be used by the filter to discern which parent elements the
- * filter should apply to.
- * </p>
- *
+ * method, which can be used by the filter to discern which parent elements the
+ * filter should apply to.
+ * </p>
+ *
* @since 3.8
*/
abstract public class TreeModelViewerFilter extends ViewerFilter {
/**
* Determines whether the filter applies to the given parent element.
- * @return Returns true if the viewer should use the given filter on the
+ * @return Returns true if the viewer should use the given filter on the
* given element.
- * @param viewer The viewer that is using this filter to select elements.
+ * @param viewer The viewer that is using this filter to select elements.
* @param parentElement Parent element to check filter for.
*/
abstract public boolean isApplicable(ITreeModelViewer viewer, Object parentElement);

Back to the top