summaryrefslogtreecommitdiffstats
path: root/tdejava/koala/org/trinitydesktop/koala/HTMLStyleElement.java
blob: 22e0a10d9a26d3f6f3958d305a016a0a94bfe45f (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
//Auto-generated by kalyptus. DO NOT EDIT.
package org.trinitydesktop.koala;

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

/**

 Style information. A more detailed style sheet object model is
 planned to be defined in a separate document. See the <a
 href="http://www.w3.org/TR/REC-html40/present/styles.html#edef-STYLE">
 STYLE element definition </a> in HTML 4.0.
 		@short    Style information.

*/
public class HTMLStyleElement extends HTMLElement  {
	protected HTMLStyleElement(Class dummy){super((Class) null);}
	public HTMLStyleElement() {
		super((Class) null);
		newHTMLStyleElement();
	}
	private native void newHTMLStyleElement();
	public HTMLStyleElement(HTMLStyleElement other) {
		super((Class) null);
		newHTMLStyleElement(other);
	}
	private native void newHTMLStyleElement(HTMLStyleElement other);
	public HTMLStyleElement(Node other) {
		super((Class) null);
		newHTMLStyleElement(other);
	}
	private native void newHTMLStyleElement(Node other);
	/**
		 Enables/disables the style sheet.
			     		@short    Enables/disables the style sheet.
	*/
	public native boolean disabled();
	/**
		 see disabled
		     		@short    see disabled
	*/
	public native void setDisabled(boolean arg1);
	/**
		 Designed for use with one or more target media. See the <a
		 href="http://www.w3.org/TR/REC-html40/present/styles.html#adef-media">
		 media attribute definition </a> in HTML 4.0.
			     		@short    Designed for use with one or more target media.
	*/
	public native String media();
	/**
		 see media
		     		@short    see media
	*/
	public native void setMedia(String arg1);
	/**
		 The style sheet language (Internet media type). See the <a
		 href="http://www.w3.org/TR/REC-html40/present/styles.html#adef-type-STYLE">
		 type attribute definition </a> in HTML 4.0.
			     		@short    The style sheet language (Internet media type).
	*/
	public native String type();
	/**
		 see type
		     		@short    see type
	*/
	public native void setType(String arg1);
	/**
		 Introduced in DOM Level 2
		 This method is from the LinkStyle interface
			 The style sheet.
		     		@short    Introduced in DOM Level 2  This method is from the LinkStyle interface
	*/
	public native StyleSheet sheet();
	// DOM::HTMLStyleElement* HTMLStyleElement(DOM::HTMLStyleElementImpl* arg1); >>>> NOT CONVERTED
}