Exemplo n.º 1
0
void JFileOutputStream::New(JString& path, jboolean append) {
	CallConstructorMethod("java/io/FileOutputStream", "(Ljava/lang/String;Z)V", path.GetJObject(), append);
}
Exemplo n.º 2
0
void JFileInputStream::New(JString& path) {
	CallConstructorMethod("java/io/FileInputStream", "(Ljava/lang/String;)V", path.GetJObject());
}
Exemplo n.º 3
0
void JInteger::New(JString& string) {
	CallConstructorMethod("java/lang/Integer", "(Ljava/lang/String;)V", string.GetJObject());
}