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

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

/**

 This contains generic meta-information about the document. See the
 <a
 href="http://www.w3.org/TR/REC-html40/struct/global.html#edef-META">
 META element definition </a> in HTML 4.0.
 		@short    This contains generic meta-information about the document.

*/
public class HTMLMetaElement extends HTMLElement  {
	protected HTMLMetaElement(Class dummy){super((Class) null);}
	public HTMLMetaElement() {
		super((Class) null);
		newHTMLMetaElement();
	}
	private native void newHTMLMetaElement();
	public HTMLMetaElement(HTMLMetaElement other) {
		super((Class) null);
		newHTMLMetaElement(other);
	}
	private native void newHTMLMetaElement(HTMLMetaElement other);
	public HTMLMetaElement(Node other) {
		super((Class) null);
		newHTMLMetaElement(other);
	}
	private native void newHTMLMetaElement(Node other);
	/**	
		 Associated information. See the <a
		 href="http://www.w3.org/TR/REC-html40/struct/global.html#adef-content">
		 content attribute definition </a> in HTML 4.0.
			     		@short    Associated information.
	*/
	public native String content();
	/**	
		 see content
		     		@short    see content
	*/
	public native void setContent(String arg1);
	/**	
		 HTTP response header name. See the <a
		 href="http://www.w3.org/TR/REC-html40/struct/global.html#adef-http-equiv">
		 http-equiv attribute definition </a> in HTML 4.0.
			     		@short    HTTP response header name.
	*/
	public native String httpEquiv();
	/**	
		 see httpEquiv
		     		@short    see httpEquiv
	*/
	public native void setHttpEquiv(String arg1);
	/**	
		 Meta information name. See the <a
		 href="http://www.w3.org/TR/REC-html40/struct/global.html#adef-name-META">
		 name attribute definition </a> in HTML 4.0.
			     		@short    Meta information name.
	*/
	public native String name();
	/**	
		 see name
		     		@short    see name
	*/
	public native void setName(String arg1);
	/**	
		 Select form of content. See the <a
		 href="http://www.w3.org/TR/REC-html40/struct/global.html#adef-scheme">
		 scheme attribute definition </a> in HTML 4.0.
			     		@short    Select form of content.
	*/
	public native String scheme();
	/**	
		 see scheme
		     		@short    see scheme
	*/
	public native void setScheme(String arg1);
	// DOM::HTMLMetaElement* HTMLMetaElement(DOM::HTMLMetaElementImpl* arg1); >>>> NOT CONVERTED
}