summaryrefslogtreecommitdiffstats
path: root/tdejava/koala/org/trinitydesktop/koala/HTMLFontElement.java
diff options
context:
space:
mode:
Diffstat (limited to 'tdejava/koala/org/trinitydesktop/koala/HTMLFontElement.java')
-rw-r--r--tdejava/koala/org/trinitydesktop/koala/HTMLFontElement.java73
1 files changed, 73 insertions, 0 deletions
diff --git a/tdejava/koala/org/trinitydesktop/koala/HTMLFontElement.java b/tdejava/koala/org/trinitydesktop/koala/HTMLFontElement.java
new file mode 100644
index 00000000..83e9f180
--- /dev/null
+++ b/tdejava/koala/org/trinitydesktop/koala/HTMLFontElement.java
@@ -0,0 +1,73 @@
+//Auto-generated by kalyptus. DO NOT EDIT.
+package org.trinitydesktop.koala;
+
+import org.trinitydesktop.qt.Qt;
+import org.trinitydesktop.qt.QtSupport;
+
+/**
+
+ Local change to font. See the <a
+ href="http://www.w3.org/TR/REC-html40/present/graphics.html#edef-FONT">
+ FONT element definition </a> in HTML 4.0. This element is
+ deprecated in HTML 4.0.
+ @short Local change to font.
+
+*/
+public class HTMLFontElement extends HTMLElement {
+ protected HTMLFontElement(Class dummy){super((Class) null);}
+ public HTMLFontElement() {
+ super((Class) null);
+ newHTMLFontElement();
+ }
+ private native void newHTMLFontElement();
+ public HTMLFontElement(HTMLFontElement other) {
+ super((Class) null);
+ newHTMLFontElement(other);
+ }
+ private native void newHTMLFontElement(HTMLFontElement other);
+ public HTMLFontElement(Node other) {
+ super((Class) null);
+ newHTMLFontElement(other);
+ }
+ private native void newHTMLFontElement(Node other);
+ /**
+ Font color. See the <a
+ href="http://www.w3.org/TR/REC-html40/present/graphics.html#adef-color-FONT">
+ color attribute definition </a> in HTML 4.0. This attribute is
+ deprecated in HTML 4.0.
+ @short Font color.
+ */
+ public native String color();
+ /**
+ see color
+ @short see color
+ */
+ public native void setColor(String arg1);
+ /**
+ Font face identifier. See the <a
+ href="http://www.w3.org/TR/REC-html40/present/graphics.html#adef-face-FONT">
+ face attribute definition </a> in HTML 4.0. This attribute is
+ deprecated in HTML 4.0.
+ @short Font face identifier.
+ */
+ public native String face();
+ /**
+ see face
+ @short see face
+ */
+ public native void setFace(String arg1);
+ /**
+ Font size. See the <a
+ href="http://www.w3.org/TR/REC-html40/present/graphics.html#adef-size-FONT">
+ size attribute definition </a> in HTML 4.0. This attribute is
+ deprecated in HTML 4.0.
+ @short Font size.
+ */
+ public native String size();
+ /**
+ see size
+ @short see size
+ */
+ public native void setSize(String arg1);
+ // DOM::HTMLFontElement* HTMLFontElement(DOM::HTMLFontElementImpl* arg1); >>>> NOT CONVERTED
+}