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/ICheckUpdate.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/provisional/ICheckUpdate.java14
1 files changed, 7 insertions, 7 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/provisional/ICheckUpdate.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/provisional/ICheckUpdate.java
index 7e31d3589..c2d1f79e8 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/provisional/ICheckUpdate.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/provisional/ICheckUpdate.java
@@ -12,25 +12,25 @@ package org.eclipse.debug.internal.ui.viewers.model.provisional;
/**
* Label update which allows the label provider to set the checked element state.
- * The label provider can use the presentation context to determine whether the
- * viewer is showing item check boxes.
- *
+ * The label provider can use the presentation context to determine whether the
+ * viewer is showing item check boxes.
+ *
* @since 3.6
*/
public interface ICheckUpdate extends ILabelUpdate {
/**
- * Property of the presentation context which indicates that the viewer
+ * Property of the presentation context which indicates that the viewer
* has the check box style.
*/
public static final String PROP_CHECK = "org.eclipse.debug.ui.check"; //$NON-NLS-1$
-
+
/**
* Sets the check state of the tree node.
- *
+ *
* @param checked Whether element should be checked.
* @param grayed Whether element should be grayed out.
*/
public void setChecked(boolean checked, boolean grayed);
-
+
}

Back to the top