From 17fe56eff9437c0bd52a35f4b9db856272e2007a Mon Sep 17 00:00:00 2001 From: Arjen Poutsma Date: Mon, 24 Sep 2007 09:39:04 +0000 Subject: [PATCH] Javadoc --- .../java/org/springframework/oxm/AbstractMarshaller.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/oxm/src/main/java/org/springframework/oxm/AbstractMarshaller.java b/oxm/src/main/java/org/springframework/oxm/AbstractMarshaller.java index c05767bf..f2440483 100644 --- a/oxm/src/main/java/org/springframework/oxm/AbstractMarshaller.java +++ b/oxm/src/main/java/org/springframework/oxm/AbstractMarshaller.java @@ -60,7 +60,9 @@ import org.xml.sax.helpers.XMLReaderFactory; */ public abstract class AbstractMarshaller implements Marshaller, Unmarshaller { - /** Logger available to subclasses. */ + /** + * Logger available to subclasses. + */ protected final Log logger = LogFactory.getLog(getClass()); private DocumentBuilderFactory documentBuilderFactory; @@ -479,6 +481,7 @@ public abstract class AbstractMarshaller implements Marshaller, Unmarshaller { * @param inputSource the input source to parse from * @return the object graph * @throws XmlMappingException if the given reader and input source cannot be converted to an object + * @throws java.io.IOException if an I/O exception occurs */ protected abstract Object unmarshalSaxReader(XMLReader xmlReader, InputSource inputSource) throws XmlMappingException, IOException;