mirror of https://github.com/kiwix/libkiwix.git
Add JNIKiwixString constructors
This commit is contained in:
parent
8edac07fcc
commit
8672aede97
|
@ -22,4 +22,16 @@ package org.kiwix.kiwixlib;
|
||||||
public class JNIKiwixString
|
public class JNIKiwixString
|
||||||
{
|
{
|
||||||
public String value;
|
public String value;
|
||||||
|
|
||||||
|
public JNIKiwixString(String value) {
|
||||||
|
this.value = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
public JNIKiwixString() {
|
||||||
|
this("");
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getValue() {
|
||||||
|
return value;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue