Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/console/ShowWhenContentChangesAction.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/console/ShowWhenContentChangesAction.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/console/ShowWhenContentChangesAction.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/console/ShowWhenContentChangesAction.java
index fca78ddb6..760cd9333 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/console/ShowWhenContentChangesAction.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/console/ShowWhenContentChangesAction.java
@@ -20,17 +20,17 @@ import org.eclipse.jface.util.PropertyChangeEvent;
/**
* Abstract action for toggling preference to automatically show
* the console when a streams content changes.
- *
+ *
* @since 3.3
*/
public abstract class ShowWhenContentChangesAction extends Action implements IPropertyChangeListener{
-
+
/**
* Constructs an action to toggle console auto activation preferences
*/
public ShowWhenContentChangesAction(String name) {
super(name, IAction.AS_CHECK_BOX);
- setToolTipText(name);
+ setToolTipText(name);
getPreferenceStore().addPropertyChangeListener(this);
update();
}
@@ -45,9 +45,9 @@ public abstract class ShowWhenContentChangesAction extends Action implements IPr
update();
}
}
-
+
protected abstract String getKey();
-
+
private void update() {
IPreferenceStore store = getPreferenceStore();
if (store.getBoolean(getKey())) {
@@ -77,7 +77,7 @@ public abstract class ShowWhenContentChangesAction extends Action implements IPr
store.setValue(getKey(), show);
store.addPropertyChangeListener(this);
}
-
+
/**
* Must be called to dispose this action.
*/

Back to the top