Package org.robovm.rt.bro.annotation
Annotation Type Bridge
@Retention(RUNTIME) @Target(METHOD) public @interface Bridge
- Version:
- $Id$
-
Optional Element Summary
-
Element Details
-
symbol
String symbol- Default:
- ""
-
dynamic
boolean dynamicSpecifies that thisBridgemethod is bound dynamically for each invocation. The function pointer must be passed in as the first parameter to theBridgeannotated method as aPointerlong.- Default:
- false
-
optional
boolean optionalSet totrueto make thisBridgemethod optional. Iftruethe binding process (Bro.bind()) will not fail even if the symbol of thisBridgemethod isn't available. Instead a call to the method will throwUnsatisfiedLinkError.- Default:
- false
-