btf: Move plugins to the Trace Compass namespace
[deliverable/tracecompass.git] / org.eclipse.linuxtools.ctf.core / src / org / eclipse / linuxtools / ctf / core / event / types / Encoding.java
index 922c4ad9fe5d383747de76e49df758a0aeb85a1d..a529d1ee6d8ed700a3e5857646ebaaa91fca56a2 100644 (file)
 
 package org.eclipse.linuxtools.ctf.core.event.types;
 
+import org.eclipse.jdt.annotation.NonNullByDefault;
+
 /**
- * <b><u>Encoding</u></b>
- * <p>
- * Encoding types
+ * CTF encoding types
+ *
+ * @version 1.0
+ * @author Matthew Khouzam
+ * @author Simon Marchi
  */
+@NonNullByDefault
 public enum Encoding {
-    UTF8, ASCII, NONE
+    /** UTF-8 encoding */
+    UTF8,
+    /** Ascii encoding */
+    ASCII,
+    /** No encoding, maybe not even text */
+    NONE
 }
This page took 0.025134 seconds and 5 git commands to generate.