summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/HTMLBaseElement.java
blob: 16d82d3659878cea615355c1f0ddcc8d30e39b97 (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
//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;

import org.kde.qt.Qt;
import org.kde.qt.QtSupport;

/**

 Document base URI. See the <a
 href="http://www.w3.org/TR/REC-html40/struct/links.html#edef-BASE">
 BASE element definition </a> in HTML 4.0.
 		@short    Document base URI.

*/
public class HTMLBaseElement extends HTMLElement  {
	protected HTMLBaseElement(Class dummy){super((Class) null);}
	public HTMLBaseElement() {
		super((Class) null);
		newHTMLBaseElement();
	}
	private native void newHTMLBaseElement();
	public HTMLBaseElement(HTMLBaseElement other) {
		super((Class) null);
		newHTMLBaseElement(other);
	}
	private native void newHTMLBaseElement(HTMLBaseElement other);
	public HTMLBaseElement(Node other) {
		super((Class) null);
		newHTMLBaseElement(other);
	}
	private native void newHTMLBaseElement(Node other);
	/**	
		 The base URI See the <a
		 href="http://www.w3.org/TR/REC-html40/struct/links.html#adef-href-BASE">
		 href attribute definition </a> in HTML 4.0.
			     		@short    The base URI See the <a  href="http://www.
	*/
	public native String href();
	/**	
		 see href
		     		@short    see href
	*/
	public native void setHref(String arg1);
	/**	
		 The default target frame. See the <a
		 href="http://www.w3.org/TR/REC-html40/present/frames.html#adef-target">
		 target attribute definition </a> in HTML 4.0.
			     		@short    The default target frame.
	*/
	public native String target();
	/**	
		 see target
		     		@short    see target
	*/
	public native void setTarget(String arg1);
	// DOM::HTMLBaseElement* HTMLBaseElement(DOM::HTMLBaseElementImpl* arg1); >>>> NOT CONVERTED
}