summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/HTMLHRElement.java
blob: ee727f0245d632a8f86ca4424d42cab16ca96732 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
//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
}