summaryrefslogtreecommitdiffstats
path: root/qtjava/javalib/qtjava/QDomComment.cpp
blob: b7d343e6e23d70cac1f14570493891c089408a7a (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
//Auto-generated by kalyptus. DO NOT EDIT.
#include <tqdom.h>

#include <qtjava/QtSupport.h>
#include <qtjava/TQDomComment.h>

class TQDomCommentJBridge : public TQDomComment
{
public:
	TQDomCommentJBridge() : TTQDomComment() {};
	TQDomCommentJBridge(const TTQDomComment& arg1) : TTQDomComment(arg1) {};
	~TQDomCommentJBridge() {QtSupport::qtKeyDeleted(this);}
};

JNIEXPORT void JNICALL
Java_org_kde_qt_QDomComment_dispose(JNIEnv* env, jobject obj)
{
	Java_org_kde_qt_QDomComment_finalize(env, obj);
	return;
}

JNIEXPORT void JNICALL
Java_org_kde_qt_QDomComment_finalize(JNIEnv* env, jobject obj)
{
	if (QtSupport::allocatedInJavaWorld(env, obj)) {
		delete (TTQDomComment*)QtSupport::getQt(env, obj);
		QtSupport::setQt(env, obj, 0);
	}
	return;
}

JNIEXPORT jboolean JNICALL
Java_org_kde_qt_QDomComment_isComment(JNIEnv* env, jobject obj)
{
	jboolean xret = (jboolean) ((TTQDomComment*) QtSupport::getQt(env, obj))->isComment();
	return xret;
}

JNIEXPORT jboolean JNICALL
Java_org_kde_qt_QDomComment_isDisposed(JNIEnv* env, jobject obj)
{
	return (QtSupport::getQt(env, obj) == 0);
}

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

JNIEXPORT void JNICALL
Java_org_kde_qt_QDomComment_newTQDomComment__Lorg_kde_qt_QDomComment_2(JNIEnv* env, jobject obj, jobject x)
{
	if (QtSupport::getQt(env, obj) == 0) {
		QtSupport::setQt(env, obj, new TQDomCommentJBridge((const TTQDomComment&)*(const TTQDomComment*) QtSupport::getQt(env, x)));
		QtSupport::setObjectForQtKey(env, obj, QtSupport::getQt(env, obj));
	}
	return;
}

JNIEXPORT jint JNICALL
Java_org_kde_qt_QDomComment_nodeType(JNIEnv* env, jobject obj)
{
	jint xret = (jint) ((TTQDomComment*) QtSupport::getQt(env, obj))->nodeType();
	return xret;
}