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

import org.kde.qt.Qt;
import java.util.ArrayList;
import org.kde.qt.QtSupport;

/**

 The <code>CSSImportRule</code> interface represents a <a
 href="http://www.w3.org/TR/REC-CSS2/cascade.html#at-import">
 <code>\@import</code> rule </a> within a CSS style sheet. The <code>\@import</code>
 rule is used to import style rules from other style sheets.
 		@short    The <code>CSSImportRule</code> interface represents a <a  href="http://www.

*/
public class CSSImportRule extends CSSRule  {
	protected CSSImportRule(Class dummy){super((Class) null);}
	public CSSImportRule() {
		super((Class) null);
		newCSSImportRule();
	}
	private native void newCSSImportRule();
	public CSSImportRule(CSSImportRule other) {
		super((Class) null);
		newCSSImportRule(other);
	}
	private native void newCSSImportRule(CSSImportRule other);
	public CSSImportRule(CSSRule other) {
		super((Class) null);
		newCSSImportRule(other);
	}
	private native void newCSSImportRule(CSSRule other);
	// DOM::CSSImportRule* CSSImportRule(DOM::CSSImportRuleImpl* arg1); >>>> NOT CONVERTED
	/**	
		 The location of the style sheet to be imported. The attribute
		 will not contain the <code>"url</code>(...)" specifier around
		 the URI.
			     		@short    The location of the style sheet to be imported.
	*/
	public native String href();
	/**	
		 A list of media types for which this style sheet may be used.
			     		@short    A list of media types for which this style sheet may be used.
	*/
	public native ArrayList media();
	/**	
		 The style sheet referred to by this rule, if it has been
		 loaded. The value of this attribute is null if the style sheet
		 has not yet been loaded or if it will not be loaded (e.g. if
		 the style sheet is for a media type not supported by the user
		 agent).
			     		@short    The style sheet referred to by this rule, if it has been  loaded.
	*/
	public native CSSStyleSheet styleSheet();
}