summaryrefslogtreecommitdiffstats
path: root/tdejava/koala/org/trinitydesktop/koala/Comment.java
blob: ae61b2a04a8c107256f145d15012aa9d35e953e4 (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
//Auto-generated by kalyptus. DO NOT EDIT.
package org.trinitydesktop.koala;

import org.trinitydesktop.qt.TQt;
import org.trinitydesktop.qt.QtSupport;

/**

 This represents the content of a comment, i.e., all the characters
 between the starting ' <code>&lt;</code>!-- ' and ending '
 <code>--&gt;</code> '. Note that this is the definition of a comment in
 XML, and, in practice, HTML, although some HTML tools may implement
 the full SGML comment structure.
 		@short    This represents the content of a comment, i.

*/
public class Comment extends CharacterData  {
	protected Comment(Class dummy){super((Class) null);}
	public Comment() {
		super((Class) null);
		newComment();
	}
	private native void newComment();
	public Comment(Comment other) {
		super((Class) null);
		newComment(other);
	}
	private native void newComment(Comment other);
	public Comment(Node other) {
		super((Class) null);
		newComment(other);
	}
	private native void newComment(Node other);
	// DOM::Comment* Comment(DOM::CommentImpl* arg1); >>>> NOT CONVERTED
}