btf: Move plugins to the Trace Compass namespace
[deliverable/tracecompass.git] / org.eclipse.linuxtools.ctf.core / src / org / eclipse / linuxtools / ctf / core / event / types / ArrayDefinition.java
index 695de3cddd8c25866e37db09d8be183cd6460900..3c0ca255fef513b9a29ff404faa9e76086df1a4c 100644 (file)
@@ -30,12 +30,14 @@ import com.google.common.collect.ImmutableList;
  * can refer to any type not containing the type of the array being declared (no
  * circular dependency). The length is the number of elements in an array.
  *
+ * @deprecated use {@link AbstractArrayDefinition}
  * @version 1.0
  * @author Matthew Khouzam
  * @author Simon Marchi
  */
 @NonNullByDefault
-public final class ArrayDefinition extends Definition {
+@Deprecated
+public final class ArrayDefinition extends AbstractArrayDefinition{
 
     // ------------------------------------------------------------------------
     // Attributes
@@ -75,10 +77,7 @@ public final class ArrayDefinition extends Definition {
     // Getters/Setters/Predicates
     // ------------------------------------------------------------------------
 
-    /**
-     * @return the definitions
-     * @since 3.0
-     */
+    @Override
     public List<Definition> getDefinitions() {
         return fDefinitions;
     }
This page took 0.027498 seconds and 5 git commands to generate.