Skip to content

Commit a7c67aa

Browse files
author
Riyad Kalla
committed
Clarified some Javadoc.
1 parent 7d575e9 commit a7c67aa

File tree

2 files changed

+3
-11
lines changed

2 files changed

+3
-11
lines changed

src/main/java/com/thebuzzmedia/sjxp/XMLParser.java

+2-10
Original file line numberDiff line numberDiff line change
@@ -31,21 +31,13 @@
3131
import com.thebuzzmedia.sjxp.rule.IRule;
3232
import com.thebuzzmedia.sjxp.rule.IRule.Type;
3333

34-
/*
35-
* TODO: Consider making this class thread-safe, or atleast behave itself better
36-
* when multiple threads call it.
37-
*
38-
* Either synchronize the methods or keep track of the currently-executing thread
39-
* and if another thread calls parse, throw an exception with a reminder to the
40-
* caller that this class is not thread-safe?
41-
*/
42-
4334
/**
4435
* Class used to define a parser that makes parsing using the performance of an
4536
* XML Pull Parser with the ease of XPath-like expressions possible.
4637
*
4738
* <h3>Thread Safety</h3> This class is not thread-safe, however instances of
48-
* {@link XMLParser} can safely be re-used to parse multiple files back-to-back.
39+
* {@link XMLParser} can safely be re-used to parse multiple files once the
40+
* previous parse operation is done.
4941
*
5042
* @param <T>
5143
* The class type of any user-supplied object that the caller wishes

src/main/java/com/thebuzzmedia/sjxp/rule/DefaultRule.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
* <pre>
4545
* new DefaultRule(Type.CHARACTER, &quot;/library/book/title&quot;) {
4646
* &#064;Override
47-
* public void handleParsedCharacters(XMLParser parser, String text) {
47+
* public void handleParsedCharacters(XMLParser parser, String text, T userObject) {
4848
* // Handle the title text
4949
* }
5050
* };

0 commit comments

Comments
 (0)