2010-11-09 Francois Chouinard <fchouinard@gmail.com> Contribution for Bug315307
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / parsers / ParserProviderManager.java
index c344b339cf1ffd123257ce35d98b25b98a210962..ada2a704e7c0d101715d9c6845d07ac44d99c67c 100644 (file)
@@ -32,17 +32,17 @@ import org.eclipse.swt.widgets.Composite;
 \r
 public class ParserProviderManager {\r
 \r
-    public static final QualifiedName PARSER_PROPERTY = new QualifiedName(TmfUiPlugin.PLUGIN_ID, "PARSER");\r
+    public static final QualifiedName PARSER_PROPERTY = new QualifiedName(TmfUiPlugin.PLUGIN_ID, "PARSER"); //$NON-NLS-1$\r
 \r
     private static List<IParserProvider> fParserProviders = new ArrayList<IParserProvider>();\r
 \r
     public static void init() {\r
         IExtensionRegistry reg = Platform.getExtensionRegistry();\r
-        IConfigurationElement[] extensions = reg.getConfigurationElementsFor("org.eclipse.linuxtools.tmf.ui.parserProviders");\r
+        IConfigurationElement[] extensions = reg.getConfigurationElementsFor("org.eclipse.linuxtools.tmf.ui.parserProviders"); //$NON-NLS-1$\r
         for (int i = 0; i < extensions.length; i++) {\r
             IConfigurationElement element = extensions[i];\r
             try {\r
-                IParserProvider parserProvider = (IParserProvider) element.createExecutableExtension("class");\r
+                IParserProvider parserProvider = (IParserProvider) element.createExecutableExtension("class"); //$NON-NLS-1$\r
                 addParserProvider(parserProvider);\r
             } catch (CoreException e) {\r
                 e.printStackTrace();\r
This page took 0.025142 seconds and 5 git commands to generate.