summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/HTMLBlockquoteElement.java
diff options
context:
space:
mode:
Diffstat (limited to 'kdejava/koala/org/kde/koala/HTMLBlockquoteElement.java')
-rw-r--r--kdejava/koala/org/kde/koala/HTMLBlockquoteElement.java45
1 files changed, 45 insertions, 0 deletions
diff --git a/kdejava/koala/org/kde/koala/HTMLBlockquoteElement.java b/kdejava/koala/org/kde/koala/HTMLBlockquoteElement.java
new file mode 100644
index 00000000..f38ea296
--- /dev/null
+++ b/kdejava/koala/org/kde/koala/HTMLBlockquoteElement.java
@@ -0,0 +1,45 @@
+//Auto-generated by kalyptus. DO NOT EDIT.
+package org.kde.koala;
+
+import org.kde.qt.Qt;
+import org.kde.qt.QtSupport;
+
+/**
+
+ ??? See the <a
+ href="http://www.w3.org/TR/REC-html40/struct/text.html#edef-BLOCKQUOTE">
+ BLOCKQUOTE 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
+}