// emitting (AbstractMetaClass::NormalFunctions|AbstractMetaClass::AbstractFunctions writeFinalFunction)
// emitting Field accessors (writeFieldAccessors)
// emitting (writeFromNativeFunction)
extern "C" Q_DECL_EXPORT jobject JNICALL QTJAMBI_FUNCTION_PREFIX(Java_org_qtjambi_qt_Declarative_QDeclarativeListProperty_fromNativePointer)
(JNIEnv *__jni_env,
 jclass,
 jobject nativePointer)
{
    void *ptr = qtjambi_to_cpointer(__jni_env, nativePointer, 1);
    return qtjambi_from_object(__jni_env, ptr, "QDeclarativeListProperty", "org/qtjambi/qt/declarative/", true);
}
extern "C" Q_DECL_EXPORT jobject JNICALL QTJAMBI_FUNCTION_PREFIX(Java_org_qtjambi_qt_Declarative_QDeclarativeListProperty__1_1qt_1clone)
(JNIEnv *__jni_env, jobject, jlong __this_nativeId)
{
    QtjambiDeclarativeListProperty *__qt_this = (QtjambiDeclarativeListProperty *) qtjambi_from_jlong(__this_nativeId);
    QTJAMBI_EXCEPTION_CHECK(__jni_env);
    Q_ASSERT(__qt_this);
    QtjambiDeclarativeListProperty *res = __qt_this;
    return qtjambi_from_object(__jni_env, res, "QDeclarativeListProperty", "org/qtjambi/qt/declarative/", true);
}
Beispiel #3
0
static jobject convertCppFutureVoidToJava(JNIEnv *env, const QFuture<void> &future)
{
    return qtjambi_from_object(env, &future, "QFutureVoid", "com/trolltech/qt/core/", true);
}
Beispiel #4
0
static jobject convertCppFutureToJava(JNIEnv *env, const QFuture<JObjectWrapper> &future)
{
    return qtjambi_from_object(env, &future, "QFuture", "com/trolltech/qt/core/", true);
}