summaryrefslogtreecommitdiffstats
path: root/tdejava/koala/org/trinitydesktop/koala/HTMLQuoteElement.java
diff options
context:
space:
mode:
Diffstat (limited to 'tdejava/koala/org/trinitydesktop/koala/HTMLQuoteElement.java')
-rw-r--r--tdejava/koala/org/trinitydesktop/koala/HTMLQuoteElement.java51
1 files changed, 51 insertions, 0 deletions
diff --git a/tdejava/koala/org/trinitydesktop/koala/HTMLQuoteElement.java b/tdejava/koala/org/trinitydesktop/koala/HTMLQuoteElement.java
new file mode 100644
index 00000000..9b900cb4
--- /dev/null
+++ b/tdejava/koala/org/trinitydesktop/koala/HTMLQuoteElement.java
@@ -0,0 +1,51 @@
+//Auto-generated by kalyptus. DO NOT EDIT.
+package org.trinitydesktop.koala;
+
+import org.trinitydesktop.qt.Qt;
+import org.trinitydesktop.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
+}