summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/HTMLLinkElement.java
diff options
context:
space:
mode:
Diffstat (limited to 'kdejava/koala/org/kde/koala/HTMLLinkElement.java')
-rw-r--r--kdejava/koala/org/kde/koala/HTMLLinkElement.java151
1 files changed, 151 insertions, 0 deletions
diff --git a/kdejava/koala/org/kde/koala/HTMLLinkElement.java b/kdejava/koala/org/kde/koala/HTMLLinkElement.java
new file mode 100644
index 00000000..87c08702
--- /dev/null
+++ b/kdejava/koala/org/kde/koala/HTMLLinkElement.java
@@ -0,0 +1,151 @@
+//Auto-generated by kalyptus. DO NOT EDIT.
+package org.kde.koala;
+
+import org.kde.qt.Qt;
+import org.kde.qt.QtSupport;
+
+/**
+
+ The <code>LINK</code> element specifies a link to an external
+ resource, and defines this document's relationship to that resource
+ (or vice versa). See the <a
+ href="http://www.w3.org/TR/REC-html40/struct/links.html#edef-LINK">
+ LINK element definition </a> in HTML 4.0.
+ @short The <code>LINK</code> element specifies a link to an external resource, and defines this document's relationship to that resource (or vice versa).
+
+*/
+public class HTMLLinkElement extends HTMLElement {
+ protected HTMLLinkElement(Class dummy){super((Class) null);}
+ public HTMLLinkElement() {
+ super((Class) null);
+ newHTMLLinkElement();
+ }
+ private native void newHTMLLinkElement();
+ public HTMLLinkElement(HTMLLinkElement other) {
+ super((Class) null);
+ newHTMLLinkElement(other);
+ }
+ private native void newHTMLLinkElement(HTMLLinkElement other);
+ public HTMLLinkElement(Node other) {
+ super((Class) null);
+ newHTMLLinkElement(other);
+ }
+ private native void newHTMLLinkElement(Node other);
+ /**
+ Enables/disables the link. This is currently only used for
+ style sheet links, and may be used to activate or deactivate
+ style sheets.
+ @short Enables/disables the link.
+ */
+ public native boolean disabled();
+ /**
+ see disabled
+ @short see disabled
+ */
+ public native void setDisabled(boolean arg1);
+ /**
+ The character encoding of the resource being linked to. 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 resource being linked to.
+ */
+ public native String charset();
+ /**
+ see charset
+ @short see charset
+ */
+ public native void setCharset(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);
+ /**
+ Designed for use with one or more target media. See the <a
+ href="http://www.w3.org/TR/REC-html40/present/styles.html#adef-media">
+ media attribute definition </a> in HTML 4.0.
+ @short Designed for use with one or more target media.
+ */
+ public native String media();
+ /**
+ see media
+ @short see media
+ */
+ public native void setMedia(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);
+ /**
+ 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);
+ /**
+ Introduced in DOM Level 2
+ This method is from the LinkStyle interface
+ The style sheet.
+ @short Introduced in DOM Level 2 This method is from the LinkStyle interface
+ */
+ public native StyleSheet sheet();
+ // DOM::HTMLLinkElement* HTMLLinkElement(DOM::HTMLLinkElementImpl* arg1); >>>> NOT CONVERTED
+}