@@ -73,6 +73,9 @@ private XPathUnmarshaller()
7373 /**
7474 * unmarshalls from xml
7575 *
76+ * @param <T>
77+ * the type of the resulting new instance, determined by the
78+ * given {@link Class}
7679 * @param xml
7780 * xml to unmarshal from
7881 * @param type
@@ -91,6 +94,9 @@ public <T> T unmarshal(String xml, Class<T> type) throws ParsingException
9194 /**
9295 * unmarshalls from {@link InputStream}
9396 *
97+ * @param <T>
98+ * the type of the resulting new instance, determined by the
99+ * given {@link Class}
94100 * @param inputStream
95101 * {@link InputStream} to unmarshal from
96102 * @param type
@@ -110,6 +116,9 @@ public <T> T unmarshal(InputStream inputStream, Class<T> type) throws ParsingExc
110116 /**
111117 * unmarshalls from {@link Reader}
112118 *
119+ * @param <T>
120+ * the type of the resulting new instance, determined by the
121+ * given {@link Class}
113122 * @param reader
114123 * {@link Reader} to unmarshal from
115124 * @param type
@@ -129,6 +138,9 @@ public <T> T unmarshal(Reader reader, Class<T> type) throws ParsingException
129138 /**
130139 * unmarshalls from {@link File}
131140 *
141+ * @param <T>
142+ * the type of the resulting new instance, determined by the
143+ * given {@link Class}
132144 * @param file
133145 * {@link File} to unmarshal from
134146 * @param type
@@ -148,6 +160,9 @@ public <T> T unmarshal(File file, Class<T> type) throws ParsingException
148160 /**
149161 * unmarshalls from {@link Element}
150162 *
163+ * @param <T>
164+ * the type of the resulting new instance, determined by the
165+ * given {@link Class}
151166 * @param root
152167 * {@link Element} to unmarshal from
153168 * @param type
0 commit comments