Annotation Interface Jsii


@Retention(RUNTIME) @Target(TYPE) @Inherited public @interface Jsii
Indicates that a class is a jsii class, which means that it's logic is implemented in a JavaScript module.
  • Nested Class Summary

    Nested Classes
    Modifier and Type
    Class
    Description
    static @interface 
    Indicates that a proxy implementation exists for this type, and what it is.
  • Required Element Summary

    Required Elements
    Modifier and Type
    Required Element
    Description
    The jsii FQN (fully qualified name) for this type.
    Class<? extends JsiiModule>
    The jsii module class that hosts this type.
  • Element Details

    • module

      Class<? extends JsiiModule> module
      The jsii module class that hosts this type.
      Returns:
      The class which represents this jsii module.
    • fqn

      String fqn
      The jsii FQN (fully qualified name) for this type.
      Returns:
      The jsii FQN of the type.