summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/HTMLAnchorElement.java
diff options
context:
space:
mode:
Diffstat (limited to 'kdejava/koala/org/kde/koala/HTMLAnchorElement.java')
-rw-r--r--kdejava/koala/org/kde/koala/HTMLAnchorElement.java192
1 files changed, 192 insertions, 0 deletions
diff --git a/kdejava/koala/org/kde/koala/HTMLAnchorElement.java b/kdejava/koala/org/kde/koala/HTMLAnchorElement.java
new file mode 100644
index 00000000..2c48684f
--- /dev/null
+++ b/kdejava/koala/org/kde/koala/HTMLAnchorElement.java
@@ -0,0 +1,192 @@
+//Auto-generated by kalyptus. DO NOT EDIT.
+package org.kde.koala;
+
+import org.kde.qt.Qt;
+import org.kde.qt.QtSupport;
+
+/**
+
+ The anchor element. See the <a
+ href="http://www.w3.org/TR/REC-html40/struct/links.html#edef-A"> A
+ element definition </a> in HTML 4.0.
+ @short The anchor element.
+
+*/
+public class HTMLAnchorElement extends HTMLElement {
+ protected HTMLAnchorElement(Class dummy){super((Class) null);}
+ public HTMLAnchorElement() {
+ super((Class) null);
+ newHTMLAnchorElement();
+ }
+ private native void newHTMLAnchorElement();
+ public HTMLAnchorElement(HTMLAnchorElement other) {
+ super((Class) null);
+ newHTMLAnchorElement(other);
+ }
+ private native void newHTMLAnchorElement(HTMLAnchorElement other);
+ public HTMLAnchorElement(Node other) {
+ super((Class) null);
+ newHTMLAnchorElement(other);
+ }
+ private native void newHTMLAnchorElement(Node other);
+ /**
+ A single character access key to give access to the form
+ control. See the <a
+ href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-accesskey">
+ accesskey attribute definition </a> in HTML 4.0.
+ @short A single character access key to give access to the form control.
+ */
+ public native String accessKey();
+ /**
+ see accessKey
+ @short see accessKey
+ */
+ public native void setAccessKey(String arg1);
+ /**
+ The character encoding of the linked resource. See the <a
+ href="http://www.w3.org/TR/REC-html40/struct/links.html#adef-charset">
+ charset attribute definition </a> in HTML 4.0.
+ @short The character encoding of the linked resource.
+ */
+ public native String charset();
+ /**
+ see charset
+ @short see charset
+ */
+ public native void setCharset(String arg1);
+ /**
+ Comma-separated list of lengths, defining an active region
+ geometry. See also <code>shape</code> for the shape of the
+ region. See the <a
+ href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-coords">
+ coords attribute definition </a> in HTML 4.0.
+ @short Comma-separated list of lengths, defining an active region geometry.
+ */
+ public native String coords();
+ /**
+ see coords
+ @short see coords
+ */
+ public native void setCoords(String arg1);
+ /**
+ The URI of the linked resource. See the <a
+ href="http://www.w3.org/TR/REC-html40/struct/links.html#adef-href">
+ href attribute definition </a> in HTML 4.0.
+ @short The URI of the linked resource.
+ */
+ public native String href();
+ /**
+ see href
+ @short see href
+ */
+ public native void setHref(String arg1);
+ /**
+ Language code of the linked resource. See the <a
+ href="http://www.w3.org/TR/REC-html40/struct/links.html#adef-hreflang">
+ hreflang attribute definition </a> in HTML 4.0.
+ @short Language code of the linked resource.
+ */
+ public native String hreflang();
+ /**
+ see hreflang
+ @short see hreflang
+ */
+ public native void setHreflang(String arg1);
+ /**
+ Anchor name. See the <a
+ href="http://www.w3.org/TR/REC-html40/struct/links.html#adef-name-A">
+ name attribute definition </a> in HTML 4.0.
+ @short Anchor name.
+ */
+ public native String name();
+ /**
+ see name
+ @short see name
+ */
+ public native void setName(String arg1);
+ /**
+ Forward link type. See the <a
+ href="http://www.w3.org/TR/REC-html40/struct/links.html#adef-rel">
+ rel attribute definition </a> in HTML 4.0.
+ @short Forward link type.
+ */
+ public native String rel();
+ /**
+ see rel
+ @short see rel
+ */
+ public native void setRel(String arg1);
+ /**
+ Reverse link type. See the <a
+ href="http://www.w3.org/TR/REC-html40/struct/links.html#adef-rev">
+ rev attribute definition </a> in HTML 4.0.
+ @short Reverse link type.
+ */
+ public native String rev();
+ /**
+ see rev
+ @short see rev
+ */
+ public native void setRev(String arg1);
+ /**
+ The shape of the active area. The coordinates are given by
+ <code>coords</code> . See the <a
+ href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-shape">
+ shape attribute definition </a> in HTML 4.0.
+ @short The shape of the active area.
+ */
+ public native String shape();
+ /**
+ see shape
+ @short see shape
+ */
+ public native void setShape(String arg1);
+ /**
+ Index that represents the element's position in the tabbing
+ order. See the <a
+ href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-tabindex">
+ tabindex attribute definition </a> in HTML 4.0.
+ @short Index that represents the element's position in the tabbing order.
+ */
+ public native long tabIndex();
+ /**
+ see tabIndex
+ @short see tabIndex
+ */
+ public native void setTabIndex(long arg1);
+ /**
+ Frame to render the resource in. See the <a
+ href="http://www.w3.org/TR/REC-html40/present/frames.html#adef-target">
+ target attribute definition </a> in HTML 4.0.
+ @short Frame to render the resource in.
+ */
+ public native String target();
+ /**
+ see target
+ @short see target
+ */
+ public native void setTarget(String arg1);
+ /**
+ Advisory content type. See the <a
+ href="http://www.w3.org/TR/REC-html40/struct/links.html#adef-type-A">
+ type attribute definition </a> in HTML 4.0.
+ @short Advisory content type.
+ */
+ public native String type();
+ /**
+ see type
+ @short see type
+ */
+ public native void setType(String arg1);
+ /**
+ Removes keyboard focus from this element.
+ @short Removes keyboard focus from this element.
+ */
+ public native void blur();
+ /**
+ Gives keyboard focus to this element.
+ @short Gives keyboard focus to this element.
+ */
+ public native void focus();
+ // DOM::HTMLAnchorElement* HTMLAnchorElement(DOM::HTMLAnchorElementImpl* arg1); >>>> NOT CONVERTED
+}