1
1
Simple Java XML Parser (SJXP) for any Java Platform including Android.
2
- http://www.thebuzzmedia.com/software/simple-java-xml-parser-sjxp/
3
-
4
2
5
3
Changelog
6
4
---------
@@ -11,15 +9,15 @@ Changelog
11
9
different kinds of XML were parsed, leading to many different unique paths
12
10
and many different unique Integer hashCode's representing each path filling
13
11
up the cache and never getting cleared.
14
- https://github.com/thebuzzmedia /simple-java-xml-parser/issues/closed#issue/7
12
+ https://github.com/rkalla /simple-java-xml-parser/issues/closed#issue/7
15
13
16
14
2.1
17
15
* Fixed bug where isStartTag was always true for TAG type rules
18
- https://github.com/thebuzzmedia /simple-java-xml-parser/issues/closed#issue/6
16
+ https://github.com/rkalla /simple-java-xml-parser/issues/closed#issue/6
19
17
20
18
* Removed use of enhanced for-loop in code base because it caused a large
21
19
number of AbstractList$Itr classes to be created for no great reason.
22
- https://github.com/thebuzzmedia /simple-java-xml-parser/issues/closed#issue/5
20
+ https://github.com/rkalla /simple-java-xml-parser/issues/closed#issue/5
23
21
24
22
2.0
25
23
* MAJOR PERFORMANCE IMPROVEMENT
@@ -36,13 +34,13 @@ Changelog
36
34
37
35
Memory usage and performance are increased drastically in this release on all
38
36
platforms (especially good for Android).
39
- https://github.com/thebuzzmedia /simple-java-xml-parser/issues/4
37
+ https://github.com/rkalla /simple-java-xml-parser/issues/4
40
38
41
39
* New IRule.Type.TAG type is defined which allows rules to be called when
42
40
START and END tag events occur without the overhead of parsing data from the
43
41
underlying XML stream. This is valuable when you want to examine (e.g. count
44
42
elements) the XML content without actually parsing data out of it.
45
- https://github.com/thebuzzmedia /simple-java-xml-parser/issues/closed#issue/3
43
+ https://github.com/rkalla /simple-java-xml-parser/issues/closed#issue/3
46
44
47
45
* Support for passing through a user-object from XMLParser to the IRule
48
46
handlers was added. Given that in almost every parsing case *something* needs
@@ -58,7 +56,7 @@ Changelog
58
56
Then in the IRule handler code your "user object" object is the passed-through
59
57
store object that you can use to store the parsed value. This is just an
60
58
example, it can be anything.
61
- https://github.com/thebuzzmedia /simple-java-xml-parser/issues/closed#issue/1
59
+ https://github.com/rkalla /simple-java-xml-parser/issues/closed#issue/1
62
60
63
61
1.1
64
62
* Initial public release.
@@ -374,9 +372,3 @@ XML Pull Parsing - http://www.xmlpull.org/
374
372
XML Pull Parsing @ Indiana U - http://www.extreme.indiana.edu/xmlpull-website/
375
373
XPP3 - http://www.extreme.indiana.edu/xgws/xsoap/xpp/mxp1/index.html
376
374
Android XML Pull Parsing - http://developer.android.com/reference/org/xmlpull/v1/package-summary.html
377
-
378
-
379
- Contact
380
- -------
381
- If you have questions, comments or bug reports for this software please contact
382
-
0 commit comments