1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22 package org.apache.struts2.dojo.components;
23
24
25 public interface RemoteBean {
26
27 void setListenTopics(String topics);
28
29 void setNotifyTopics(String topics);
30
31 void setHref(String href);
32
33 void setErrorText(String errorText);
34
35 void setAfterNotifyTopics(String afterNotifyTopics);
36
37 void setBeforeNotifyTopics(String beforeNotifyTopics);
38
39 void setErrorNotifyTopics(String errorNotifyTopics);
40
41 void setExecuteScripts(String executeScripts);
42
43 void setLoadingText(String loadingText);
44
45 void setHandler(String handler);
46
47 void setFormFilter(String formFilter);
48
49 void setFormId(String formId);
50
51 void setShowErrorTransportText(String showError);
52
53 void setShowLoadingText(String showLoadingText);
54
55 void setIndicator(String indicator);
56
57 void setName(String name);
58
59 void setCssStyle(String style);
60
61 void setCssClass(String cssClass);
62
63 void setHighlightColor(String color);
64
65 void setHighlightDuration(String color);
66
67 void setSeparateScripts(String separateScripts);
68
69 void setTransport(String transport);
70
71 void setParseContent(String parseContent);
72 }