//Auto-generated by kalyptus. DO NOT EDIT. package org.kde.koala; import org.kde.qt.Qt; import org.kde.qt.QtSupport; /** Create a horizontal rule. See the HR element definition in HTML 4.0. @short Create a horizontal rule. */ public class HTMLHRElement extends HTMLElement { protected HTMLHRElement(Class dummy){super((Class) null);} public HTMLHRElement() { super((Class) null); newHTMLHRElement(); } private native void newHTMLHRElement(); public HTMLHRElement(HTMLHRElement other) { super((Class) null); newHTMLHRElement(other); } private native void newHTMLHRElement(HTMLHRElement other); public HTMLHRElement(Node other) { super((Class) null); newHTMLHRElement(other); } private native void newHTMLHRElement(Node other); /** Align the rule on the page. See the align attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0. @short Align the rule on the page. */ public native String align(); /** see align @short see align */ public native void setAlign(String arg1); /** Indicates to the user agent that there should be no shading in the rendering of this element. See the noshade attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0. @short Indicates to the user agent that there should be no shading in the rendering of this element. */ public native boolean noShade(); /** see noShade @short see noShade */ public native void setNoShade(boolean arg1); /** The height of the rule. See the size attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0. @short The height of the rule. */ public native String size(); /** see size @short see size */ public native void setSize(String arg1); /** The width of the rule. See the width attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0. @short The width of the rule. */ public native String width(); /** see width @short see width */ public native void setWidth(String arg1); // DOM::HTMLHRElement* HTMLHRElement(DOM::HTMLHRElementImpl* arg1); >>>> NOT CONVERTED }