Func is a Java static function or method or constructor.
| 81 | |
| 82 | // Func is a Java static function or method or constructor. |
| 83 | type Func struct { |
| 84 | FuncSig |
| 85 | ArgDesc string |
| 86 | // Mangled JNI name |
| 87 | JNIName string |
| 88 | Static bool |
| 89 | Abstract bool |
| 90 | Final bool |
| 91 | Public bool |
| 92 | Constructor bool |
| 93 | Params []*Type |
| 94 | Ret *Type |
| 95 | Decl string |
| 96 | Throws string |
| 97 | } |
| 98 | |
| 99 | // FuncSig uniquely identifies a Java Func. |
| 100 | type FuncSig struct { |
nothing calls this directly
no outgoing calls
no test coverage detected