summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/HTMLModElement.java
blob: 47a570cfae5f346847fce7b4426d2b4f7c3e8a43 (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
//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;

import org.kde.qt.Qt;
import org.kde.qt.QtSupport;

/**

 Notice of modification to part of a document. See the <a
 href="http://www.w3.org/TR/REC-html40/struct/text.html#edef-ins">
 INS </a> and <a
 href="http://www.w3.org/TR/REC-html40/struct/text.html#edef-del">
 DEL </a> element definitions in HTML 4.0.
 		@short    Notice of modification to part of a document.

*/
public class HTMLModElement extends HTMLElement  {
	protected HTMLModElement(Class dummy){super((Class) null);}
	public HTMLModElement() {
		super((Class) null);
		newHTMLModElement();
	}
	private native void newHTMLModElement();
	public HTMLModElement(HTMLModElement other) {
		super((Class) null);
		newHTMLModElement(other);
	}
	private native void newHTMLModElement(HTMLModElement other);
	public HTMLModElement(Node other) {
		super((Class) null);
		newHTMLModElement(other);
	}
	private native void newHTMLModElement(Node other);
	/**	
		 A URI designating a document that describes the reason for the
		 change. See the <a href="http://www.w3.org/TR/REC-html40/">
		 cite attribute definition </a> in HTML 4.0.
			     		@short    A URI designating a document that describes the reason for the  change.
	*/
	public native String cite();
	/**	
		 see cite
		     		@short    see cite
	*/
	public native void setCite(String arg1);
	/**	
		 The date and time of the change. See the <a
		 href="http://www.w3.org/TR/REC-html40/struct/text.html#adef-datetime">
		 datetime attribute definition </a> in HTML 4.0.
			     		@short    The date and time of the change.
	*/
	public native String dateTime();
	/**	
		 see dateTime
		     		@short    see dateTime
	*/
	public native void setDateTime(String arg1);
	// DOM::HTMLModElement* HTMLModElement(DOM::HTMLElementImpl* arg1); >>>> NOT CONVERTED
}