analysis.lami: Implementation of LAMI plugins
[deliverable/tracecompass.git] / analysis / org.eclipse.tracecompass.analysis.lami.core / src / org / eclipse / tracecompass / internal / provisional / analysis / lami / core / types / LamiSystemCall.java
diff --git a/analysis/org.eclipse.tracecompass.analysis.lami.core/src/org/eclipse/tracecompass/internal/provisional/analysis/lami/core/types/LamiSystemCall.java b/analysis/org.eclipse.tracecompass.analysis.lami.core/src/org/eclipse/tracecompass/internal/provisional/analysis/lami/core/types/LamiSystemCall.java
new file mode 100644 (file)
index 0000000..b20111a
--- /dev/null
@@ -0,0 +1,43 @@
+/*******************************************************************************
+ * Copyright (c) 2016 EfficiOS Inc., Philippe Proulx
+ *
+ * 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
+ *******************************************************************************/
+
+package org.eclipse.tracecompass.internal.provisional.analysis.lami.core.types;
+
+import org.eclipse.jdt.annotation.Nullable;
+
+/**
+ * Data element for LAMI system call objects.
+ *
+ * @author Philippe Proulx
+ */
+public class LamiSystemCall extends LamiString {
+
+    private final String fString;
+
+    /**
+     * Constructor
+     *
+     * @param value
+     *            The 'value' field of the system call, typically its name
+     */
+    public LamiSystemCall(String value) {
+        super(value);
+
+        if (value.endsWith("()")) { //$NON-NLS-1$
+            fString = value;
+        } else {
+            fString = value + "()"; //$NON-NLS-1$
+        }
+    }
+
+    @Override
+    public @Nullable String toString() {
+        return fString;
+    }
+}
This page took 0.029947 seconds and 5 git commands to generate.