summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/HTMLAreaElement.java
diff options
context:
space:
mode:
Diffstat (limited to 'kdejava/koala/org/kde/koala/HTMLAreaElement.java')
-rw-r--r--kdejava/koala/org/kde/koala/HTMLAreaElement.java136
1 files changed, 0 insertions, 136 deletions
diff --git a/kdejava/koala/org/kde/koala/HTMLAreaElement.java b/kdejava/koala/org/kde/koala/HTMLAreaElement.java
deleted file mode 100644
index 11f4de56..00000000
--- a/kdejava/koala/org/kde/koala/HTMLAreaElement.java
+++ /dev/null
@@ -1,136 +0,0 @@
-//Auto-generated by kalyptus. DO NOT EDIT.
-package org.kde.koala;
-
-import org.kde.qt.Qt;
-import org.kde.qt.QtSupport;
-
-/**
-
- Client-side image map area definition. See the <a
- href="http://www.w3.org/TR/REC-html40/struct/objects.html#edef-AREA">
- AREA element definition </a> in HTML 4.0.
- @short Client-side image map area definition.
-
-*/
-public class HTMLAreaElement extends HTMLElement {
- protected HTMLAreaElement(Class dummy){super((Class) null);}
- public HTMLAreaElement() {
- super((Class) null);
- newHTMLAreaElement();
- }
- private native void newHTMLAreaElement();
- public HTMLAreaElement(HTMLAreaElement other) {
- super((Class) null);
- newHTMLAreaElement(other);
- }
- private native void newHTMLAreaElement(HTMLAreaElement other);
- public HTMLAreaElement(Node other) {
- super((Class) null);
- newHTMLAreaElement(other);
- }
- private native void newHTMLAreaElement(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);
- /**
- Alternate text for user agents not rendering the normal content
- of this element. See the <a
- href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-alt">
- alt attribute definition </a> in HTML 4.0.
- @short Alternate text for user agents not rendering the normal content of this element.
- */
- public native String alt();
- /**
- see alt
- @short see alt
- */
- public native void setAlt(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);
- /**
- Specifies that this area is inactive, i.e., has no associated
- action. See the <a
- href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-nohref">
- nohref attribute definition </a> in HTML 4.0.
- @short Specifies that this area is inactive, i.
- */
- public native boolean noHref();
- /**
- see noHref
- @short see noHref
- */
- public native void setNoHref(boolean 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);
- // DOM::HTMLAreaElement* HTMLAreaElement(DOM::HTMLAreaElementImpl* arg1); >>>> NOT CONVERTED
-}