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/HTMLQuoteElement.java

52 lines
1.7 KiB

//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;
import org.kde.qt.Qt;
import org.kde.qt.QtSupport;
/**
For the <code>Q</code> and <code>BLOCKTQUOTE</code> elements.
See the <a
href="http://www.w3.org/TR/REC-html40/struct/text.html#edef-Q"> Q
element definition </a> in HTML 4.0.
Note: The DOM is not quite consistent here. They also define the
HTMLBlockQuoteElement interface, to represent the <code>BLOCKTQUOTE</code>
element. To resolve ambiquities, we use this one for the <code>Q</code>
element only.
@short For the <code>Q</code> and <code>BLOCKTQUOTE</code> elements.
*/
public class HTMLQuoteElement extends HTMLElement {
protected HTMLQuoteElement(Class dummy){super((Class) null);}
public HTMLQuoteElement() {
super((Class) null);
newHTMLQuoteElement();
}
private native void newHTMLQuoteElement();
public HTMLQuoteElement(HTMLQuoteElement other) {
super((Class) null);
newHTMLQuoteElement(other);
}
private native void newHTMLQuoteElement(HTMLQuoteElement other);
public HTMLQuoteElement(Node other) {
super((Class) null);
newHTMLQuoteElement(other);
}
private native void newHTMLQuoteElement(Node other);
/**
A URI designating a document that designates a source document
or message. See the <a
href="http://www.w3.org/TR/REC-html40/struct/text.html#adef-cite-Q">
cite attribute definition </a> in HTML 4.0.
@short A URI designating a document that designates a source document or message.
*/
public native String cite();
/**
see cite
@short see cite
*/
public native void setCite(String arg1);
// DOM::HTMLQuoteElement* HTMLQuoteElement(DOM::HTMLGenericElementImpl* arg1); >>>> NOT CONVERTED
}