1
2
3
4
5
6
7
8
9
10
11
12
13
14
15 package org.htmlunit.javascript.host.html;
16
17 import org.htmlunit.html.HtmlBlockQuote;
18 import org.htmlunit.html.HtmlInlineQuotation;
19 import org.htmlunit.javascript.configuration.JsxClass;
20 import org.htmlunit.javascript.configuration.JsxConstructor;
21 import org.htmlunit.javascript.configuration.JsxGetter;
22 import org.htmlunit.javascript.configuration.JsxSetter;
23
24
25
26
27
28
29
30
31 @JsxClass(domClass = HtmlInlineQuotation.class)
32 @JsxClass(domClass = HtmlBlockQuote.class)
33 public class HTMLQuoteElement extends HTMLElement {
34
35
36
37
38 @Override
39 @JsxConstructor
40 public void jsConstructor() {
41 super.jsConstructor();
42 }
43
44
45
46
47
48 @JsxGetter
49 public String getCite() {
50 return getDomNodeOrDie().getAttributeDirect("cite");
51 }
52
53
54
55
56
57 @JsxSetter
58 public void setCite(final String cite) {
59 getDomNodeOrDie().setAttribute("cite", cite);
60 }
61 }