Create a native array of strings.
(String[] strings)
| 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()); |
nothing calls this directly
no test coverage detected