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