Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrey Loskutov2017-01-09 13:12:58 +0000
committerAndrey Loskutov2017-01-13 20:56:39 +0000
commitebb2566c95427e5c7cffd5e27f1e910b0a187b17 (patch)
treef9b87db9c4ccf476dfb8c8d4b5fcfcfd3f871bbb /org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/stringsubstitution/StringVariablePresentationManager.java
parent1c1d17b82a223fb8fcc69b4883a71b8744899ccb (diff)
downloadeclipse.platform.debug-ebb2566c95427e5c7cffd5e27f1e910b0a187b17.tar.gz
eclipse.platform.debug-ebb2566c95427e5c7cffd5e27f1e910b0a187b17.tar.xz
eclipse.platform.debug-ebb2566c95427e5c7cffd5e27f1e910b0a187b17.zip
Also enabled "cleanup whitespace on save" actions for debug.ui and debug.tests bundles. Change-Id: I755b879ab1d49144a1bec3f4318dbb8b29521bb3 Signed-off-by: Andrey Loskutov <loskutov@gmx.de>
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/stringsubstitution/StringVariablePresentationManager.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/stringsubstitution/StringVariablePresentationManager.java28
1 files changed, 14 insertions, 14 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/stringsubstitution/StringVariablePresentationManager.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/stringsubstitution/StringVariablePresentationManager.java
index d649557fa..cbda799de 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/stringsubstitution/StringVariablePresentationManager.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/stringsubstitution/StringVariablePresentationManager.java
@@ -25,35 +25,35 @@ import com.ibm.icu.text.MessageFormat;
/**
* Manages argument selectors (choosers) for string variables.
- *
+ *
* @since 3.0
*/
public class StringVariablePresentationManager {
-
+
/**
* String variable presentation extension point identifier
* (value <code>"stringVariablePresentations"</code>).
- *
+ *
* @since 3.0
*/
public static final String EXTENSION_POINT_STRING_VARIABLE_PRESENTATIONS = "stringVariablePresentations"; //$NON-NLS-1$
-
+
// default manager
private static StringVariablePresentationManager fgManager;
-
+
// extension point attributes
public static final String ATTR_NAME = "variableName"; //$NON-NLS-1$
public static final String ATTR_ARGUMENT_SELECTOR = "argumentSelector"; //$NON-NLS-1$
-
+
/**
* Table of configuration elements for variable presentations,
* keyed by variable name.
*/
private Map<String, IConfigurationElement> fConfigurations;
-
+
/**
* Returns the singleton string variable presentation manager.
- *
+ *
* @return the singleton string variable presentation manager
*/
public static StringVariablePresentationManager getDefault() {
@@ -62,11 +62,11 @@ public class StringVariablePresentationManager {
}
return fgManager;
}
-
+
/**
* Returns an argument selector contributed for the given
* variable, or <code>null</code> if none.
- *
+ *
* @param variable string substitution variable
* @return argument selector or <code>null</code>
*/
@@ -81,7 +81,7 @@ public class StringVariablePresentationManager {
}
return null;
}
-
+
/**
* Constructs the manager, loading extensions.
*/
@@ -90,7 +90,7 @@ public class StringVariablePresentationManager {
}
/**
- * Load extensions
+ * Load extensions
*/
private void initialize() {
fConfigurations = new HashMap<String, IConfigurationElement>();
@@ -104,8 +104,8 @@ public class StringVariablePresentationManager {
continue;
}
fConfigurations.put(name, element);
- }
+ }
}
-
+
}

Back to the top