//Auto-generated by kalyptus. DO NOT EDIT. package org.kde.koala; import org.kde.qt.Qt; import org.kde.qt.QtSupport; /** Create a frame. See the FRAME element definition in HTML 4.0. @short Create a frame. */ public class HTMLFrameElement extends HTMLElement { protected HTMLFrameElement(Class dummy){super((Class) null);} public HTMLFrameElement() { super((Class) null); newHTMLFrameElement(); } private native void newHTMLFrameElement(); public HTMLFrameElement(HTMLFrameElement other) { super((Class) null); newHTMLFrameElement(other); } private native void newHTMLFrameElement(HTMLFrameElement other); public HTMLFrameElement(Node other) { super((Class) null); newHTMLFrameElement(other); } private native void newHTMLFrameElement(Node other); /** Request frame borders. See the frameborder attribute definition in HTML 4.0. @short Request frame borders. */ public native String frameBorder(); /** see frameBorder @short see frameBorder */ public native void setFrameBorder(String arg1); /** URI designating a long description of this image or frame. See the longdesc attribute definition 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 marginheight attribute definition 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 marginwidth attribute definition 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 target attribute). See the name attribute definition in HTML 4.0. @short The frame name (object of the target attribute). */ public native String name(); /** see name @short see name */ public native void setName(String arg1); /** When true, forbid user from resizing frame. See the noresize attribute definition in HTML 4.0. @short When true, forbid user from resizing frame. */ public native boolean noResize(); /** see noResize @short see noResize */ public native void setNoResize(boolean arg1); /** Specify whether or not the frame should have scrollbars. See the scrolling attribute definition 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 src attribute definition 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); /** Introduced in DOM Level 2 Returns the document this frame 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::HTMLFrameElement* HTMLFrameElement(DOM::HTMLFrameElementImpl* arg1); >>>> NOT CONVERTED }