Merge branch 'master' into lttng-kepler
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / internal / tmf / ui / parsers / custom / CustomXmlEvent.java
index 8acb7810d86995b031c17c82f11ef889869807d5..6efe4b42cf5a75f841064661aab9040981a991cf 100644 (file)
@@ -1,83 +1,83 @@
-/*******************************************************************************\r
- * Copyright (c) 2010 Ericsson\r
- *\r
- * All rights reserved. This program and the accompanying materials are\r
- * made available under the terms of the Eclipse Public License v1.0 which\r
- * accompanies this distribution, and is available at\r
- * http://www.eclipse.org/legal/epl-v10.html\r
- *\r
- * Contributors:\r
- *   Patrick Tasse - Initial API and implementation\r
- *******************************************************************************/\r
-\r
-package org.eclipse.linuxtools.internal.tmf.ui.parsers.custom;\r
-\r
-import org.eclipse.linuxtools.tmf.core.event.ITmfEventField;\r
-import org.eclipse.linuxtools.tmf.core.event.ITmfTimestamp;\r
-import org.eclipse.linuxtools.tmf.core.event.TmfEvent;\r
-import org.eclipse.linuxtools.tmf.core.event.TmfEventType;\r
-import org.eclipse.linuxtools.tmf.core.trace.ITmfTrace;\r
-\r
-public class CustomXmlEvent extends CustomEvent {\r
-\r
-    public CustomXmlEvent(CustomXmlTraceDefinition definition) {\r
-        super(definition);\r
-        setType(new CustomXmlEventType(definition));\r
-    }\r
-\r
-    public CustomXmlEvent(CustomXmlTraceDefinition definition, TmfEvent other) {\r
-        super(definition, other);\r
-    }\r
-\r
-    public CustomXmlEvent(CustomXmlTraceDefinition definition, ITmfTrace parentTrace, ITmfTimestamp timestamp, String source, TmfEventType type, String reference) {\r
-        super(definition, parentTrace, timestamp, source, type, reference);\r
-    }\r
-\r
-    @Override\r
-    public void setContent(ITmfEventField content) {\r
-        super.setContent(content);\r
-    }\r
-\r
-    public void parseInput(String value, String name, int inputAction, String inputFormat) {\r
-        if (value.length() == 0) {\r
-            return;\r
-        }\r
-        if (inputAction == CustomTraceDefinition.ACTION_SET) {\r
-            fData.put(name, value);\r
-            if (name.equals(CustomTraceDefinition.TAG_TIMESTAMP)) {\r
-                fData.put(TIMESTAMP_INPUT_FORMAT_KEY, inputFormat);\r
-            }\r
-        } else if (inputAction == CustomTraceDefinition.ACTION_APPEND) {\r
-            String s = fData.get(name);\r
-            if (s != null) {\r
-                fData.put(name, s + value);\r
-            } else {\r
-                fData.put(name, value);\r
-            }\r
-            if (name.equals(CustomTraceDefinition.TAG_TIMESTAMP)) {\r
-                String timeStampInputFormat = fData.get(TIMESTAMP_INPUT_FORMAT_KEY);\r
-                if (timeStampInputFormat != null) {\r
-                    fData.put(TIMESTAMP_INPUT_FORMAT_KEY, timeStampInputFormat + inputFormat);\r
-                } else {\r
-                    fData.put(TIMESTAMP_INPUT_FORMAT_KEY, inputFormat);\r
-                }\r
-            }\r
-        } else if (inputAction == CustomTraceDefinition.ACTION_APPEND_WITH_SEPARATOR) {\r
-            String s = fData.get(name);\r
-            if (s != null) {\r
-                fData.put(name, s + " | " + value); //$NON-NLS-1$\r
-            } else {\r
-                fData.put(name, value);\r
-            }\r
-            if (name.equals(CustomTraceDefinition.TAG_TIMESTAMP)) {\r
-                String timeStampInputFormat = fData.get(TIMESTAMP_INPUT_FORMAT_KEY);\r
-                if (timeStampInputFormat != null) {\r
-                    fData.put(TIMESTAMP_INPUT_FORMAT_KEY, timeStampInputFormat + " | " + inputFormat); //$NON-NLS-1$\r
-                } else {\r
-                    fData.put(TIMESTAMP_INPUT_FORMAT_KEY, inputFormat);\r
-                }\r
-            }\r
-        }\r
-    }\r
-\r
-}\r
+/*******************************************************************************
+ * Copyright (c) 2010 Ericsson
+ *
+ * All rights reserved. This program and the accompanying materials 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:
+ *   Patrick Tasse - Initial API and implementation
+ *******************************************************************************/
+
+package org.eclipse.linuxtools.internal.tmf.ui.parsers.custom;
+
+import org.eclipse.linuxtools.tmf.core.event.ITmfEventField;
+import org.eclipse.linuxtools.tmf.core.event.ITmfTimestamp;
+import org.eclipse.linuxtools.tmf.core.event.TmfEvent;
+import org.eclipse.linuxtools.tmf.core.event.TmfEventType;
+import org.eclipse.linuxtools.tmf.core.trace.ITmfTrace;
+
+public class CustomXmlEvent extends CustomEvent {
+
+    public CustomXmlEvent(CustomXmlTraceDefinition definition) {
+        super(definition);
+        setType(new CustomXmlEventType(definition));
+    }
+
+    public CustomXmlEvent(CustomXmlTraceDefinition definition, TmfEvent other) {
+        super(definition, other);
+    }
+
+    public CustomXmlEvent(CustomXmlTraceDefinition definition, ITmfTrace parentTrace, ITmfTimestamp timestamp, String source, TmfEventType type, String reference) {
+        super(definition, parentTrace, timestamp, source, type, reference);
+    }
+
+    @Override
+    public void setContent(ITmfEventField content) {
+        super.setContent(content);
+    }
+
+    public void parseInput(String value, String name, int inputAction, String inputFormat) {
+        if (value.length() == 0) {
+            return;
+        }
+        if (inputAction == CustomTraceDefinition.ACTION_SET) {
+            fData.put(name, value);
+            if (name.equals(CustomTraceDefinition.TAG_TIMESTAMP)) {
+                fData.put(TIMESTAMP_INPUT_FORMAT_KEY, inputFormat);
+            }
+        } else if (inputAction == CustomTraceDefinition.ACTION_APPEND) {
+            String s = fData.get(name);
+            if (s != null) {
+                fData.put(name, s + value);
+            } else {
+                fData.put(name, value);
+            }
+            if (name.equals(CustomTraceDefinition.TAG_TIMESTAMP)) {
+                String timeStampInputFormat = fData.get(TIMESTAMP_INPUT_FORMAT_KEY);
+                if (timeStampInputFormat != null) {
+                    fData.put(TIMESTAMP_INPUT_FORMAT_KEY, timeStampInputFormat + inputFormat);
+                } else {
+                    fData.put(TIMESTAMP_INPUT_FORMAT_KEY, inputFormat);
+                }
+            }
+        } else if (inputAction == CustomTraceDefinition.ACTION_APPEND_WITH_SEPARATOR) {
+            String s = fData.get(name);
+            if (s != null) {
+                fData.put(name, s + " | " + value); //$NON-NLS-1$
+            } else {
+                fData.put(name, value);
+            }
+            if (name.equals(CustomTraceDefinition.TAG_TIMESTAMP)) {
+                String timeStampInputFormat = fData.get(TIMESTAMP_INPUT_FORMAT_KEY);
+                if (timeStampInputFormat != null) {
+                    fData.put(TIMESTAMP_INPUT_FORMAT_KEY, timeStampInputFormat + " | " + inputFormat); //$NON-NLS-1$
+                } else {
+                    fData.put(TIMESTAMP_INPUT_FORMAT_KEY, inputFormat);
+                }
+            }
+        }
+    }
+
+}
This page took 0.029594 seconds and 5 git commands to generate.