Annotation Type ExtendedNode


  • @Retention(RUNTIME)
    @Target(TYPE)
    public @interface ExtendedNode
    Marks a node class that extends an existing class in a parent namespace The PARENT is the label of the parent class that the node class extends.

    This annotation is only required if the java class doesn't extend from the corresponding root class.

    Please be aware that if there is a chain of extensions, this must be FULLY qualifying: Ex. test.A -> test.x.B -> ClassWithAnnotation. -> parent = test_x_B:test_A

    Since:
    1.0
    Author:
    Oliver Krauss
    • Field Summary

      Fields 
      Modifier and Type Fields Description
      static String PARENT  
    • Required Element Summary

      Required Elements 
      Modifier and Type Required Element Description
      String parent  
    • Field Detail

      • PARENT

        static final String PARENT