summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/HTMLIFrameElement.java
diff options
context:
space:
mode:
Diffstat (limited to 'kdejava/koala/org/kde/koala/HTMLIFrameElement.java')
-rw-r--r--kdejava/koala/org/kde/koala/HTMLIFrameElement.java168
1 files changed, 0 insertions, 168 deletions
diff --git a/kdejava/koala/org/kde/koala/HTMLIFrameElement.java b/kdejava/koala/org/kde/koala/HTMLIFrameElement.java
deleted file mode 100644
index 591ed864..00000000
--- a/kdejava/koala/org/kde/koala/HTMLIFrameElement.java
+++ /dev/null
@@ -1,168 +0,0 @@
-//Auto-generated by kalyptus. DO NOT EDIT.
-package org.kde.koala;
-
-import org.kde.qt.Qt;
-import org.kde.qt.QtSupport;
-
-/**
-
- Inline subwindows. See the <a
- href="http://www.w3.org/TR/REC-html40/present/frames.html#edef-IFRAME">
- IFRAME element definition </a> in HTML 4.0.
- @short Inline subwindows.
-
-*/
-public class HTMLIFrameElement extends HTMLElement {
- protected HTMLIFrameElement(Class dummy){super((Class) null);}
- public HTMLIFrameElement() {
- super((Class) null);
- newHTMLIFrameElement();
- }
- private native void newHTMLIFrameElement();
- public HTMLIFrameElement(HTMLIFrameElement other) {
- super((Class) null);
- newHTMLIFrameElement(other);
- }
- private native void newHTMLIFrameElement(HTMLIFrameElement other);
- public HTMLIFrameElement(Node other) {
- super((Class) null);
- newHTMLIFrameElement(other);
- }
- private native void newHTMLIFrameElement(Node other);
- /**
- Aligns this object (vertically or horizontally) with respect to
- its surrounding text. See the <a
- href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-align-IMG">
- align attribute definition </a> in HTML 4.0. This attribute is
- deprecated in HTML 4.0.
- @short Aligns this object (vertically or horizontally) with respect to its surrounding text.
- */
- public native String align();
- /**
- see align
- @short see align
- */
- public native void setAlign(String arg1);
- /**
- Request frame borders. See the <a
- href="http://www.w3.org/TR/REC-html40/present/frames.html#adef-frameborder">
- frameborder attribute definition </a> in HTML 4.0.
- @short Request frame borders.
- */
- public native String frameBorder();
- /**
- see frameBorder
- @short see frameBorder
- */
- public native void setFrameBorder(String arg1);
- /**
- Frame height. See the <a
- href="http://www.w3.org/TR/REC-html40/present/frames.html#adef-height-IFRAME">
- height attribute definition </a> in HTML 4.0.
- @short Frame height.
- */
- public native String height();
- /**
- see height
- @short see height
- */
- public native void setHeight(String arg1);
- /**
- URI designating a long description of this image or frame. See
- the <a
- href="http://www.w3.org/TR/REC-html40/present/frames.html#adef-longdesc-IFRAME">
- longdesc attribute definition </a> in HTML 4.0.
- @short URI designating a long description of this image or frame.
- */
- public native String longDesc();
- /**
- see longDesc
- @short see longDesc
- */
- public native void setLongDesc(String arg1);
- /**
- Frame margin height, in pixels. See the <a
- href="http://www.w3.org/TR/REC-html40/present/frames.html#adef-marginheight">
- marginheight attribute definition </a> in HTML 4.0.
- @short Frame margin height, in pixels.
- */
- public native String marginHeight();
- /**
- see marginHeight
- @short see marginHeight
- */
- public native void setMarginHeight(String arg1);
- /**
- Frame margin width, in pixels. See the <a
- href="http://www.w3.org/TR/REC-html40/present/frames.html#adef-marginwidth">
- marginwidth attribute definition </a> in HTML 4.0.
- @short Frame margin width, in pixels.
- */
- public native String marginWidth();
- /**
- see marginWidth
- @short see marginWidth
- */
- public native void setMarginWidth(String arg1);
- /**
- The frame name (object of the <code>target</code> attribute).
- See the <a
- href="http://www.w3.org/TR/REC-html40/present/frames.html#adef-name-IFRAME">
- name attribute definition </a> in HTML 4.0.
- @short The frame name (object of the <code>target</code> attribute).
- */
- public native String name();
- /**
- see name
- @short see name
- */
- public native void setName(String arg1);
- /**
- Specify whether or not the frame should have scrollbars. See
- the <a
- href="http://www.w3.org/TR/REC-html40/present/frames.html#adef-scrolling">
- scrolling attribute definition </a> in HTML 4.0.
- @short Specify whether or not the frame should have scrollbars.
- */
- public native String scrolling();
- /**
- see scrolling
- @short see scrolling
- */
- public native void setScrolling(String arg1);
- /**
- A URI designating the initial frame contents. See the <a
- href="http://www.w3.org/TR/REC-html40/present/frames.html#adef-src-FRAME">
- src attribute definition </a> in HTML 4.0.
- @short A URI designating the initial frame contents.
- */
- public native String src();
- /**
- see src
- @short see src
- */
- public native void setSrc(String arg1);
- /**
- Frame width. See the <a
- href="http://www.w3.org/TR/REC-html40/present/frames.html#adef-width-IFRAME">
- width attribute definition </a> in HTML 4.0.
- @short Frame width.
- */
- public native String width();
- /**
- see width
- @short see width
- */
- public native void setWidth(String arg1);
- /**
- Introduced in DOM Level 2
- Returns the document this iframe contains, if there is any and
- it is available, a Null document otherwise. The attribute is
- read-only.
- @return The content Document if available.
-
- @short Introduced in DOM Level 2
- */
- public native Document contentDocument();
- // DOM::HTMLIFrameElement* HTMLIFrameElement(DOM::HTMLIFrameElementImpl* arg1); >>>> NOT CONVERTED
-}