summaryrefslogtreecommitdiffstats
path: root/tdejava/koala/tdejava/EntityReference.cpp
blob: 6cfa45f4f6e0adabba01f22c0b343966248e9927 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
//Auto-generated by kalyptus. DO NOT EDIT.
#include <dom/dom_xml.h>
#include <dom/dom_node.h>

#include <qtjava/QtSupport.h>
#include <tdejava/TDESupport.h>
#include <tdejava/EntityReference.h>

class EntityReferenceJBridge : public DOM::EntityReference
{
public:
	EntityReferenceJBridge() : DOM::EntityReference() {};
	EntityReferenceJBridge(const DOM::EntityReference& arg1) : DOM::EntityReference(arg1) {};
	EntityReferenceJBridge(const DOM::Node& arg1) : DOM::EntityReference(arg1) {};
};

JNIEXPORT void JNICALL
Java_org_trinitydesktop_koala_EntityReference_newEntityReference__(JNIEnv* env, jobject obj)
{
	if (QtSupport::getQt(env, obj) == 0) {
		QtSupport::setQt(env, obj, new EntityReferenceJBridge());
		QtSupport::setObjectForQtKey(env, obj, QtSupport::getQt(env, obj));
	}
	return;
}

JNIEXPORT void JNICALL
Java_org_trinitydesktop_koala_EntityReference_newEntityReference__Lorg_trinitydesktop_koala_EntityReference_2(JNIEnv* env, jobject obj, jobject other)
{
	if (QtSupport::getQt(env, obj) == 0) {
		QtSupport::setQt(env, obj, new EntityReferenceJBridge((const DOM::EntityReference&)*(const DOM::EntityReference*) QtSupport::getQt(env, other)));
		QtSupport::setObjectForQtKey(env, obj, QtSupport::getQt(env, obj));
	}
	return;
}

JNIEXPORT void JNICALL
Java_org_trinitydesktop_koala_EntityReference_newEntityReference__Lorg_trinitydesktop_koala_Node_2(JNIEnv* env, jobject obj, jobject other)
{
	if (QtSupport::getQt(env, obj) == 0) {
		QtSupport::setQt(env, obj, new EntityReferenceJBridge((const DOM::Node&)*(const DOM::Node*) QtSupport::getQt(env, other)));
		QtSupport::setObjectForQtKey(env, obj, QtSupport::getQt(env, obj));
	}
	return;
}