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

Method setWideString

src/com/sun/jna/Pointer.java:1114–1116  ·  view source on GitHub ↗

Copy string value to the location being pointed to as a wide string ( wchar_t ). @param offset byte offset from pointer at which characters in value must be set @param value java.lang.String value to set

(long offset, String value)

Source from the content-addressed store, hash-verified

1112 * @param value <code>java.lang.String</code> value to set
1113 */
1114 public void setWideString(long offset, String value) {
1115 Native.setWideString(this, this.peer, offset, value);
1116 }
1117
1118 /**
1119 * Copy string <code>value</code> to the location being pointed to as a

Callers 3

getResourceMethod · 0.95
getResourceNamesMethod · 0.95
setStringMethod · 0.95

Calls 1

setWideStringMethod · 0.95

Tested by

no test coverage detected