MCPcopy Index your code
hub / github.com/java-native-access/jna / toString

Method toString

src/com/sun/jna/Function.java:677–684  ·  view source on GitHub ↗

Provide a human-readable representation of this object.

()

Source from the content-addressed store, hash-verified

675
676 /** Provide a human-readable representation of this object. */
677 @Override
678 public String toString() {
679 if (library != null) {
680 return "native function " + functionName + "(" + library.getName()
681 + ")@0x" + Long.toHexString(peer);
682 }
683 return "native function@0x" + Long.toHexString(peer);
684 }
685
686 /** Convenience method for
687 * {@link #invoke(Class,Object[]) invokeObject(Object.class, args)}.

Callers 3

FunctionMethod · 0.45
convertArgumentMethod · 0.45
invokeStringMethod · 0.45

Calls 1

getNameMethod · 0.65

Tested by

no test coverage detected