Skip to content

Commit a101792

Browse files
committed
fixed java-doc-errors
1 parent c6f0efb commit a101792

File tree

7 files changed

+274
-31
lines changed

7 files changed

+274
-31
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<coveralls.version>4.1.0</coveralls.version>
2424
<maven.compiler.plugin.version>3.7.0</maven.compiler.plugin.version>
2525
<maven.source.plugin.version>2.4</maven.source.plugin.version>
26-
<maven.javadoc.plugin.version>2.10.3</maven.javadoc.plugin.version>
26+
<maven.javadoc.plugin.version>2.10.4</maven.javadoc.plugin.version>
2727
<maven.gpg.plugin.version>1.6</maven.gpg.plugin.version>
2828
<maven.release.plugin.version>2.5.3</maven.release.plugin.version>
2929
<maven.scm.provider.gitexe.version>1.9.4</maven.scm.provider.gitexe.version>

src/main/java/com/avides/xpath/utils/NodeIterator.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
* @author Martin Schumacher
1414
* @since 1.0.0.RELEASE
1515
*
16-
* @see {@link com.avides.xpath.utils.XPathUtils#each(Node, String)}
17-
* @see {@link com.avides.xpath.utils.XPathUtils#queryNodeList(Node, String)}
16+
* @see com.avides.xpath.utils.XPathUtils#each(Node, String)
17+
* @see com.avides.xpath.utils.XPathUtils#queryNodeList(Node, String)
1818
*/
1919
public class NodeIterator implements Iterator<Node>, Iterable<Node>
2020
{

src/main/java/com/avides/xpath/utils/XPathUnmarshaller.java

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)