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

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

/**

 For the <code>Q</code> and <code>BLOCKTQUOTE</code> elements.
 See the <a
 href="http://www.w3.org/TR/REC-html40/struct/text.html#edef-Q"> Q
 element definition </a> in HTML 4.0.
 Note: The DOM is not quite consistent here. They also define the
 HTMLBlockQuoteElement interface, to represent the <code>BLOCKTQUOTE</code>
 element. To resolve ambiquities, we use this one for the <code>Q</code>
 element only.
 		@short    For the <code>Q</code> and <code>BLOCKTQUOTE</code> elements.

*/
public class HTMLQuoteElement extends HTMLElement  {
	protected HTMLQuoteElement(Class dummy){super((Class) null);}
	public HTMLQuoteElement() {
		super((Class) null);
		newHTMLQuoteElement();
	}
	private native void newHTMLQuoteElement();
	public HTMLQuoteElement(HTMLQuoteElement other) {
		super((Class) null);
		newHTMLQuoteElement(other);
	}
	private native void newHTMLQuoteElement(HTMLQuoteElement other);
	public HTMLQuoteElement(Node other) {
		super((Class) null);
		newHTMLQuoteElement(other);
	}
	private native void newHTMLQuoteElement(Node other);
	/**	
		 A URI designating a document that designates a source document
		 or message. See the <a
		 href="http://www.w3.org/TR/REC-html40/struct/text.html#adef-cite-Q">
		 cite attribute definition </a> in HTML 4.0.
			     		@short    A URI designating a document that designates a source document  or message.
	*/
	public native String cite();
	/**	
		 see cite
		     		@short    see cite
	*/
	public native void setCite(String arg1);
	// DOM::HTMLQuoteElement* HTMLQuoteElement(DOM::HTMLGenericElementImpl* arg1); >>>> NOT CONVERTED
}