@Retention(value=RUNTIME) public @interface HasImplicitOutput
Place this on a parameter to define a binding that need return value
The following example shows a example binding that uses HasImplicitOutput
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.PARAMETER)
@HasImplicitOutput
public @interface HasImplicitOutputBinding {
// ...
}| Modifier and Type | Optional Element and Description |
|---|---|
boolean |
value
Defines the binding metadata value, if ture support for return value, if false don't support return value.
|
Copyright © 2022. All rights reserved.