Fix warnings
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core / src / org / eclipse / linuxtools / tmf / core / ctfadaptor / CtfTmfEventField.java
index 20234a1fde71c9237c9d156607b884c6aeb923e8..c7b71e02ba8430929240bde4e49c11699f87a58e 100644 (file)
@@ -138,7 +138,7 @@ public abstract class CtfTmfEventField implements ITmfEventField {
 
     /**
      * Return the int representing this field's value type
-     * 
+     *
      * @return the field type
      */
     public abstract int getFieldType();
@@ -146,7 +146,7 @@ public abstract class CtfTmfEventField implements ITmfEventField {
     /**
      * Return this field's value. You can cast it to the correct type depending
      * on what getFieldType says.
-     * 
+     *
      * @return the field value
      */
     @Override
@@ -155,7 +155,7 @@ public abstract class CtfTmfEventField implements ITmfEventField {
     /**
      * Other methods defined by ITmfEventField, but not used here: the CTF
      *       fields do not have sub-fields (yet!)
-     * 
+     *
      * @return the field names
      */
     @Override
@@ -163,6 +163,7 @@ public abstract class CtfTmfEventField implements ITmfEventField {
         return null;
     }
 
+    @SuppressWarnings("unused")
     @Override
     public String getFieldName(int index) {
         return null;
@@ -173,11 +174,13 @@ public abstract class CtfTmfEventField implements ITmfEventField {
         return null;
     }
 
+    @SuppressWarnings("unused")
     @Override
     public ITmfEventField getField(String fieldName) {
         return null;
     }
 
+    @SuppressWarnings("unused")
     @Override
     public ITmfEventField getField(int index) {
         return null;
@@ -212,7 +215,7 @@ final class CTFIntegerField extends CtfTmfEventField {
 
     /*
      * (non-Javadoc)
-     * 
+     *
      * @see java.lang.Object#toString()
      */
     @Override
@@ -245,7 +248,7 @@ final class CTFStringField extends CtfTmfEventField {
 
     /*
      * (non-Javadoc)
-     * 
+     *
      * @see java.lang.Object#toString()
      */
     @Override
This page took 0.025713 seconds and 5 git commands to generate.