MCPcopy Create free account
hub / github.com/java-native-access/jna / StringArray

Method StringArray

src/com/sun/jna/StringArray.java:40–42  ·  view source on GitHub ↗

Create a native array of strings.

(String[] strings)

Source from the content-addressed store, hash-verified

38 private Object[] original;
39 /** Create a native array of strings. */
40 public StringArray(String[] strings) {
41 this(strings, false);
42 }
43 /** Create a native array of strings. */
44 public StringArray(String[] strings, boolean wide) {
45 this((Object[])strings, wide ? NativeString.WIDE_STRING : Native.getDefaultStringEncoding());

Callers

nothing calls this directly

Calls 5

getPointerMethod · 0.95
toStringMethod · 0.45
addMethod · 0.45
setPointerMethod · 0.45

Tested by

no test coverage detected