File tree 2 files changed +3
-11
lines changed
src/main/java/com/thebuzzmedia/sjxp
2 files changed +3
-11
lines changed Original file line number Diff line number Diff line change 31
31
import com .thebuzzmedia .sjxp .rule .IRule ;
32
32
import com .thebuzzmedia .sjxp .rule .IRule .Type ;
33
33
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
-
43
34
/**
44
35
* Class used to define a parser that makes parsing using the performance of an
45
36
* XML Pull Parser with the ease of XPath-like expressions possible.
46
37
*
47
38
* <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.
49
41
*
50
42
* @param <T>
51
43
* The class type of any user-supplied object that the caller wishes
Original file line number Diff line number Diff line change 44
44
* <pre>
45
45
* new DefaultRule(Type.CHARACTER, "/library/book/title") {
46
46
* @Override
47
- * public void handleParsedCharacters(XMLParser parser, String text) {
47
+ * public void handleParsedCharacters(XMLParser parser, String text, T userObject ) {
48
48
* // Handle the title text
49
49
* }
50
50
* };
You can’t perform that action at this time.
0 commit comments