@@ -37,6 +37,8 @@ public ObjectFactory() {
37
37
/**
38
38
* Create an instance of {@link Para }
39
39
*
40
+ * @return
41
+ * the new instance of {@link Para }
40
42
*/
41
43
public Para createPara () {
42
44
return new Para ();
@@ -45,6 +47,8 @@ public Para createPara() {
45
47
/**
46
48
* Create an instance of {@link Markup }
47
49
*
50
+ * @return
51
+ * the new instance of {@link Markup }
48
52
*/
49
53
public Markup createMarkup () {
50
54
return new Markup ();
@@ -53,6 +57,8 @@ public Markup createMarkup() {
53
57
/**
54
58
* Create an instance of {@link SearchEu }
55
59
*
60
+ * @return
61
+ * the new instance of {@link SearchEu }
56
62
*/
57
63
public SearchEu createSearchEu () {
58
64
return new SearchEu ();
@@ -61,6 +67,8 @@ public SearchEu createSearchEu() {
61
67
/**
62
68
* Create an instance of {@link SearchMulti }
63
69
*
70
+ * @return
71
+ * the new instance of {@link SearchMulti }
64
72
*/
65
73
public SearchMulti createSearchMulti () {
66
74
return new SearchMulti ();
@@ -69,6 +77,8 @@ public SearchMulti createSearchMulti() {
69
77
/**
70
78
* Create an instance of {@link ClassCommon }
71
79
*
80
+ * @return
81
+ * the new instance of {@link ClassCommon }
72
82
*/
73
83
public ClassCommon createClassCommon () {
74
84
return new ClassCommon ();
@@ -77,6 +87,8 @@ public ClassCommon createClassCommon() {
77
87
/**
78
88
* Create an instance of {@link ClassExt }
79
89
*
90
+ * @return
91
+ * the new instance of {@link ClassExt }
80
92
*/
81
93
public ClassExt createClassExt () {
82
94
return new ClassExt ();
@@ -85,6 +97,8 @@ public ClassExt createClassExt() {
85
97
/**
86
98
* Create an instance of {@link ClassesEu }
87
99
*
100
+ * @return
101
+ * the new instance of {@link ClassesEu }
88
102
*/
89
103
public ClassesEu createClassesEu () {
90
104
return new ClassesEu ();
@@ -93,6 +107,8 @@ public ClassesEu createClassesEu() {
93
107
/**
94
108
* Create an instance of {@link ClassesUs }
95
109
*
110
+ * @return
111
+ * the new instance of {@link ClassesUs }
96
112
*/
97
113
public ClassesUs createClassesUs () {
98
114
return new ClassesUs ();
@@ -108,7 +124,7 @@ public ClassesUs createClassesUs() {
108
124
*/
109
125
@ XmlElementDecl (namespace = "" , name = "br" )
110
126
public JAXBElement <Object > createBr (Object value ) {
111
- return new JAXBElement <Object >(_Br_QNAME , Object .class , null , value );
127
+ return new JAXBElement <>(_Br_QNAME , Object .class , null , value );
112
128
}
113
129
114
130
/**
@@ -121,7 +137,7 @@ public JAXBElement<Object> createBr(Object value) {
121
137
*/
122
138
@ XmlElementDecl (namespace = "" , name = "page" )
123
139
public JAXBElement <Object > createPage (Object value ) {
124
- return new JAXBElement <Object >(_Page_QNAME , Object .class , null , value );
140
+ return new JAXBElement <>(_Page_QNAME , Object .class , null , value );
125
141
}
126
142
127
143
}
0 commit comments