Package grim.annotations
Annotation Interface OmitType
Annotation indicating that the class should not be present in output javascript.
This is typically used when it is expected that all contained members are optimized away.
-
Optional Element Summary
Optional Elements
-
Element Details
-
unless
String unlessThe type should be omitted unless this expression is true. Supplying a value for this parameter is incompatible with supplying a value to thewhen()parameter.- Returns:
- the conditional expression.
- Default:
- ""
-
when
String whenThe type should be omitted if this expression is true. Supplying a value for this parameter is incompatible with supplying a value to theunless()parameter.- Returns:
- the conditional expression.
- Default:
- ""
-