You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdebindings/kdejava/koala/org/kde/koala/HTMLModElement.java

60 lines
1.8 KiB

//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
}