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

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

/**

 The <code>CSSPageRule</code> interface represents a <a
 href="http://www.w3.org/TR/REC-CSS2/page.html#page-box"> page rule
 </a> within a CSS style sheet. The <code>@page</code> rule is
 used to specify the dimensions, orientation, margins, etc. of a
 page box for paged media.
 		@short    The <code>CSSPageRule</code> interface represents a <a  href="http://www.

*/
public class CSSPageRule extends CSSRule  {
	protected CSSPageRule(Class dummy){super((Class) null);}
	public CSSPageRule() {
		super((Class) null);
		newCSSPageRule();
	}
	private native void newCSSPageRule();
	public CSSPageRule(CSSPageRule other) {
		super((Class) null);
		newCSSPageRule(other);
	}
	private native void newCSSPageRule(CSSPageRule other);
	public CSSPageRule(CSSRule other) {
		super((Class) null);
		newCSSPageRule(other);
	}
	private native void newCSSPageRule(CSSRule other);
	// DOM::CSSPageRule* CSSPageRule(DOM::CSSPageRuleImpl* arg1); >>>> NOT CONVERTED
	/**	
		 The parsable textual representation of the page selector for
		 the rule.
			     		@short    The parsable textual representation of the page selector for  the rule.
	*/
	public native String selectorText();
	/**	
		 see selectorText
			     		@short    see selectorText
	*/
	public native void setSelectorText(String arg1);
	/**	
		 The <a href="http://www.w3.org/TR/REC-CSS2/syndata.html#q8">
		 declaration-block </a> of this rule.
			     		@short    The <a href="http://www.
	*/
	public native CSSStyleDeclaration style();
}