Package org.jetbrains.annotations
Annotation Type Debug.Renderer
-
@Target(TYPE) @Retention(CLASS) public static @interface Debug.Renderer
Allows to change the presentation of an object in debuggers
-
-
Optional Element Summary
Optional Elements Modifier and Type Optional Element Description @NonNls StringchildrenArrayExpression to be evaluated to obtain an array of object's children.
Usually the result is an array of elements in a collection, or an array of entries in a map.
thisrefers to the class instance being presented@NonNls StringhasChildrenExpression to be evaluated to check if the object has any children at all.
This should work faster thanchildrenArray()and return boolean.
thisrefers to the class instance being presented@NonNls StringtextExpression to be evaluated and used as the textual representation of the object.
thisrefers to the class instance being presented
-
-
-
-
hasChildren
@NonNls @NonNls String hasChildren
Expression to be evaluated to check if the object has any children at all.
This should work faster thanchildrenArray()and return boolean.
thisrefers to the class instance being presented- Default:
- ""
-
-