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

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

/**

 Document head information. See the <a
 href="http://www.w3.org/TR/REC-html40/struct/global.html#edef-HEAD">
 HEAD element definition </a> in HTML 4.0.
 		@short    Document head information.

*/
public class HTMLHeadElement extends HTMLElement  {
	protected HTMLHeadElement(Class dummy){super((Class) null);}
	public HTMLHeadElement() {
		super((Class) null);
		newHTMLHeadElement();
	}
	private native void newHTMLHeadElement();
	public HTMLHeadElement(HTMLHeadElement other) {
		super((Class) null);
		newHTMLHeadElement(other);
	}
	private native void newHTMLHeadElement(HTMLHeadElement other);
	public HTMLHeadElement(Node other) {
		super((Class) null);
		newHTMLHeadElement(other);
	}
	private native void newHTMLHeadElement(Node other);
	/**	
		 URI designating a metadata profile. See the <a
		 href="http://www.w3.org/TR/REC-html40/struct/global.html#adef-profile">
		 profile attribute definition </a> in HTML 4.0.
			     		@short    URI designating a metadata profile.
	*/
	public native String profile();
	/**	
		 see profile
		     		@short    see profile
	*/
	public native void setProfile(String arg1);
	// DOM::HTMLHeadElement* HTMLHeadElement(DOM::HTMLHeadElementImpl* arg1); >>>> NOT CONVERTED
}