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/tdejava/koala/org/trinitydesktop/koala/HTMLBlockquoteElement.java

46 lines
1.4 KiB

//Auto-generated by kalyptus. DO NOT EDIT.
package org.trinitydesktop.koala;
import org.trinitydesktop.qt.Qt;
import org.trinitydesktop.qt.QtSupport;
/**
??? See the <a
href="http://www.w3.org/TR/REC-html40/struct/text.html#edef-BLOCKTQUOTE">
BLOCKTQUOTE element definition </a> in HTML 4.0.
@short ??? See the <a href="http://www.
*/
public class HTMLBlockquoteElement extends HTMLElement {
protected HTMLBlockquoteElement(Class dummy){super((Class) null);}
public HTMLBlockquoteElement() {
super((Class) null);
newHTMLBlockquoteElement();
}
private native void newHTMLBlockquoteElement();
public HTMLBlockquoteElement(HTMLBlockquoteElement other) {
super((Class) null);
newHTMLBlockquoteElement(other);
}
private native void newHTMLBlockquoteElement(HTMLBlockquoteElement other);
public HTMLBlockquoteElement(Node other) {
super((Class) null);
newHTMLBlockquoteElement(other);
}
private native void newHTMLBlockquoteElement(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);
// DOM::HTMLBlockquoteElement* HTMLBlockquoteElement(DOM::HTMLElementImpl* arg1); >>>> NOT CONVERTED
}