//Auto-generated by kalyptus. DO NOT EDIT. #include #include #include #include #include #include class HTMLBRElementJBridge : public DOM::HTMLBRElement { public: HTMLBRElementJBridge() : DOM::HTMLBRElement() {}; HTMLBRElementJBridge(const DOM::HTMLBRElement& arg1) : DOM::HTMLBRElement(arg1) {}; HTMLBRElementJBridge(const DOM::Node& arg1) : DOM::HTMLBRElement(arg1) {}; }; JNIEXPORT jstring JNICALL Java_org_kde_koala_HTMLBRElement_clear(JNIEnv* env, jobject obj) { DOM::DOMString _qstring; _qstring = ((DOM::HTMLBRElement*) QtSupport::getQt(env, obj))->clear(); return KDESupport::fromDOMString(env, &_qstring); } JNIEXPORT void JNICALL Java_org_kde_koala_HTMLBRElement_newHTMLBRElement__(JNIEnv* env, jobject obj) { if (QtSupport::getQt(env, obj) == 0) { QtSupport::setQt(env, obj, new HTMLBRElementJBridge()); QtSupport::setObjectForQtKey(env, obj, QtSupport::getQt(env, obj)); } return; } JNIEXPORT void JNICALL Java_org_kde_koala_HTMLBRElement_newHTMLBRElement__Lorg_kde_koala_HTMLBRElement_2(JNIEnv* env, jobject obj, jobject other) { if (QtSupport::getQt(env, obj) == 0) { QtSupport::setQt(env, obj, new HTMLBRElementJBridge((const DOM::HTMLBRElement&)*(const DOM::HTMLBRElement*) QtSupport::getQt(env, other))); QtSupport::setObjectForQtKey(env, obj, QtSupport::getQt(env, obj)); } return; } JNIEXPORT void JNICALL Java_org_kde_koala_HTMLBRElement_newHTMLBRElement__Lorg_kde_koala_Node_2(JNIEnv* env, jobject obj, jobject other) { if (QtSupport::getQt(env, obj) == 0) { QtSupport::setQt(env, obj, new HTMLBRElementJBridge((const DOM::Node&)*(const DOM::Node*) QtSupport::getQt(env, other))); QtSupport::setObjectForQtKey(env, obj, QtSupport::getQt(env, obj)); } return; } JNIEXPORT void JNICALL Java_org_kde_koala_HTMLBRElement_setClear(JNIEnv* env, jobject obj, jstring arg1) { static DOM::DOMString* _domstring_arg1 = 0; ((DOM::HTMLBRElement*) QtSupport::getQt(env, obj))->setClear((DOM::DOMString)*(DOM::DOMString*) KDESupport::toDOMString(env, arg1, &_domstring_arg1)); return; }