You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdebindings/kdejava/koala/org/kde/koala/HTMLHRElement.java

87 lines
2.6 KiB

//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 <a
href="http://www.w3.org/TR/REC-html40/present/graphics.html#edef-HR">
HR element definition </a> 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 <a
href="http://www.w3.org/TR/REC-html40/present/graphics.html#adef-align-HR">
align attribute definition </a> 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 <a
href="http://www.w3.org/TR/REC-html40/present/graphics.html#adef-noshade">
noshade attribute definition </a> 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 <a
href="http://www.w3.org/TR/REC-html40/present/graphics.html#adef-size-HR">
size attribute definition </a> 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 <a
href="http://www.w3.org/TR/REC-html40/present/graphics.html#adef-width-HR">
width attribute definition </a> 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
}