|
95 | 95 | * @see #setUnmarshallerProperties(Map)
|
96 | 96 | * @see #setSchema(Resource)
|
97 | 97 | * @see #setSchemas(Resource[])
|
98 |
| - * @see #setMarshallerListener(Marshaller.Listener) |
| 98 | + * @see #setMarshallerListener(javax.xml.bind.Marshaller.Listener) |
99 | 99 | * @see #setUnmarshallerListener(javax.xml.bind.Unmarshaller.Listener)
|
100 | 100 | * @see #setAdapters(XmlAdapter[])
|
101 | 101 | * @since 3.0
|
@@ -178,11 +178,11 @@ public void setJaxbContextProperties(Map<String, ?> jaxbContextProperties) {
|
178 | 178 | * Set the JAXB <code>Marshaller</code> properties. These properties will be set on the
|
179 | 179 | * underlying JAXB <code>Marshaller</code>, and allow for features such as indentation.
|
180 | 180 | * @param properties the properties
|
181 |
| - * @see Marshaller#setProperty(String,Object) |
182 |
| - * @see Marshaller#JAXB_ENCODING |
183 |
| - * @see Marshaller#JAXB_FORMATTED_OUTPUT |
184 |
| - * @see Marshaller#JAXB_NO_NAMESPACE_SCHEMA_LOCATION |
185 |
| - * @see Marshaller#JAXB_SCHEMA_LOCATION |
| 181 | + * @see javax.xml.bind.Marshaller#setProperty(String,Object) |
| 182 | + * @see javax.xml.bind.Marshaller#JAXB_ENCODING |
| 183 | + * @see javax.xml.bind.Marshaller#JAXB_FORMATTED_OUTPUT |
| 184 | + * @see javax.xml.bind.Marshaller#JAXB_NO_NAMESPACE_SCHEMA_LOCATION |
| 185 | + * @see javax.xml.bind.Marshaller#JAXB_SCHEMA_LOCATION |
186 | 186 | */
|
187 | 187 | public void setMarshallerProperties(Map<String, Object> properties) {
|
188 | 188 | this.marshallerProperties = properties;
|
@@ -424,8 +424,8 @@ protected Marshaller createMarshaller() {
|
424 | 424 | * Gets called after creation of JAXB <code>Marshaller</code>, and after the respective properties have been set.
|
425 | 425 | * <p>The default implementation sets the {@link #setMarshallerProperties(Map) defined properties}, the {@link
|
426 | 426 | * #setValidationEventHandler(ValidationEventHandler) validation event handler}, the {@link #setSchemas(Resource[])
|
427 |
| - * schemas}, {@link #setMarshallerListener(Marshaller.Listener) listener}, and {@link #setAdapters(XmlAdapter[]) |
428 |
| - * adapters}. |
| 427 | + * schemas}, {@link #setMarshallerListener(javax.xml.bind.Marshaller.Listener) listener}, and |
| 428 | + * {@link #setAdapters(XmlAdapter[]) adapters}. |
429 | 429 | */
|
430 | 430 | protected void initJaxbMarshaller(Marshaller marshaller) throws JAXBException {
|
431 | 431 | if (this.marshallerProperties != null) {
|
@@ -509,8 +509,8 @@ protected Unmarshaller createUnmarshaller() {
|
509 | 509 | * Gets called after creation of JAXB <code>Marshaller</code>, and after the respective properties have been set.
|
510 | 510 | * <p>The default implementation sets the {@link #setUnmarshallerProperties(Map) defined properties}, the {@link
|
511 | 511 | * #setValidationEventHandler(ValidationEventHandler) validation event handler}, the {@link #setSchemas(Resource[])
|
512 |
| - * schemas}, {@link #setUnmarshallerListener(Unmarshaller.Listener) listener}, and {@link #setAdapters(XmlAdapter[]) |
513 |
| - * adapters}. |
| 512 | + * schemas}, {@link #setUnmarshallerListener(javax.xml.bind.Unmarshaller.Listener) listener}, and |
| 513 | + * {@link #setAdapters(XmlAdapter[]) adapters}. |
514 | 514 | */
|
515 | 515 | protected void initJaxbUnmarshaller(Unmarshaller unmarshaller) throws JAXBException {
|
516 | 516 | if (this.unmarshallerProperties != null) {
|
|
0 commit comments