summaryrefslogtreecommitdiffstats
path: root/tdejava/koala/org/trinitydesktop/koala/HTMLScriptElement.java
blob: b67c4374b04dccb916047fc3186c24e4f92f1ef1 (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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
//Auto-generated by kalyptus. DO NOT EDIT.
package org.trinitydesktop.koala;

import org.trinitydesktop.qt.Qt;
import org.trinitydesktop.qt.QtSupport;

/**

 Script statements. See the <a
 href="http://www.w3.org/TR/REC-html40/interact/scripts.html#edef-SCRIPT">
 SCRIPT element definition </a> in HTML 4.0.
 		@short    Script statements.

*/
public class HTMLScriptElement extends HTMLElement  {
	protected HTMLScriptElement(Class dummy){super((Class) null);}
	public HTMLScriptElement() {
		super((Class) null);
		newHTMLScriptElement();
	}
	private native void newHTMLScriptElement();
	public HTMLScriptElement(HTMLScriptElement other) {
		super((Class) null);
		newHTMLScriptElement(other);
	}
	private native void newHTMLScriptElement(HTMLScriptElement other);
	public HTMLScriptElement(Node other) {
		super((Class) null);
		newHTMLScriptElement(other);
	}
	private native void newHTMLScriptElement(Node other);
	/**
		 The script content of the element.
			     		@short    The script content of the element.
	*/
	public native String text();
	/**
		 see text
		     		@short    see text
	*/
	public native void setText(String arg1);
	/**
		 Reserved for future use.
			     		@short    Reserved for future use.
	*/
	public native String htmlFor();
	/**
		 see htmlFor
		     		@short    see htmlFor
	*/
	public native void setHtmlFor(String arg1);
	/**
		 Reserved for future use.
			     		@short    Reserved for future use.
	*/
	public native String event();
	/**
		 see event
		     		@short    see event
	*/
	public native void setEvent(String arg1);
	/**
		 The character encoding of the linked resource. See the <a
		 href="http://www.w3.org/TR/REC-html40/struct/links.html#adef-charset">
		 charset attribute definition </a> in HTML 4.0.
			     		@short    The character encoding of the linked resource.
	*/
	public native String charset();
	/**
		 see charset
		     		@short    see charset
	*/
	public native void setCharset(String arg1);
	/**
		 Indicates that the user agent can defer processing of the
		 script. See the <a
		 href="http://www.w3.org/TR/REC-html40/interact/scripts.html#adef-defer">
		 defer attribute definition </a> in HTML 4.0.
			     		@short    Indicates that the user agent can defer processing of the  script.
	*/
	public native boolean defer();
	/**
		 see defer
		     		@short    see defer
	*/
	public native void setDefer(boolean arg1);
	/**
		 URI designating an external script. See the <a
		 href="http://www.w3.org/TR/REC-html40/interact/scripts.html#adef-src-SCRIPT">
		 src attribute definition </a> in HTML 4.0.
			     		@short    URI designating an external script.
	*/
	public native String src();
	/**
		 see src
		     		@short    see src
	*/
	public native void setSrc(String arg1);
	/**
		 The content type of the script language. See the <a
		 href="http://www.w3.org/TR/REC-html40/interact/scripts.html#adef-type-SCRIPT">
		 type attribute definition </a> in HTML 4.0.
			     		@short    The content type of the script language.
	*/
	public native String type();
	/**
		 see type
		     		@short    see type
	*/
	public native void setType(String arg1);
	// DOM::HTMLScriptElement* HTMLScriptElement(DOM::HTMLScriptElementImpl* arg1); >>>> NOT CONVERTED
}