Directory src/java/com/thoughtworks/xstream/xml/

Directory Created:
2003-09-26 07:08
Directory Deleted:
2004-03-07 06:10
Total Files:
0
Deleted Files:
4
Lines of Code:
0

[root]/src/java/com/thoughtworks/xstream/xml
                            Folder removed from repo dom (0 files, 0 lines)
                            Folder removed from repo dom4j (0 files, 0 lines)
                            Folder removed from repo path (0 files, 0 lines)
                            Folder removed from repo text (0 files, 0 lines)
                            Folder removed from repo xpp3 (0 files, 0 lines)

Lines of Code

src/java/com/thoughtworks/xstream/xml/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 14 (100.0%) 34 (100.0%) 2.4
joe 13 (92.9%) 32 (94.1%) 2.4
jvanzyl 1 (7.1%) 2 (5.9%) 2.0

Most Recent Commits

joe 2004-03-07 06:10 Rev.: 95

Renamed XMLReader/Writer related classes/interfaces/packages to be less XML like and more general heirachy like.

0 lines of code changed in 4 files:

  • src/java/com/thoughtworks/xstream/xml: CannotParseXMLException.java (del), XMLReader.java (del), XMLReaderDriver.java (del), XMLWriter.java (del)
jvanzyl 2003-11-30 14:15 Rev.: 31

o Adding

Object peek()

to the XMLReader interface in order to allow the client access to the raw
hierarchical Object being unmarshalled.

The specific use case was the unmarshalling of a hiearchical Configuration
object into an Object model where there might be embedded Configuration
objects as part of the model. We just want to let these pass through
transparently. As such we just need the Object so I'm making it
available via peek().

2 lines of code changed in 1 file:

  • src/java/com/thoughtworks/xstream/xml: XMLReader.java (+2 -1)
joe 2003-10-26 10:43 Rev.: 24

Refactored XMLReader API to be more pull-like - you can only ever move forward one tag at a time (no read-aheads and no back-tracking).

1 lines of code changed in 1 file:

  • src/java/com/thoughtworks/xstream/xml: XMLReader.java (+1 -5)
joe 2003-10-26 09:54 Rev.: 23

Removed XMLReader.childElement(String name) - should be accessed by index, not name

0 lines of code changed in 1 file:

  • src/java/com/thoughtworks/xstream/xml: XMLReader.java (-2)
joe 2003-10-26 09:45 Rev.: 22

Remove childExists() from xmlreader

0 lines of code changed in 1 file:

  • src/java/com/thoughtworks/xstream/xml: XMLReader.java (-2)
joe 2003-10-24 09:01 Rev.: 9

Bugfix: Can now deserialize xml that has objects with null fields.

2 lines of code changed in 1 file:

  • src/java/com/thoughtworks/xstream/xml: XMLReader.java (+2)
joe 2003-09-29 14:03 Rev.: 3

A weekend worth of changes with no home connectivity
- added XMLReaderDriver abstraction to allow easy switching of XML parsers
- StringBuffer converter
- XMLReader test cases
- W3C DOM XMLReader impl (removes DOM4J dependency)
- Refactoring: Converters now determine whether they can handle a type
- XStream facade: added methods to allow custom XMLReader/Writers to be used
- Refactoring: XMLWriter has more sensible test names
- Static/final/transient fields are not serialized

18 lines of code changed in 3 files:

  • src/java/com/thoughtworks/xstream/xml: CannotParseXMLException.java (new 7), XMLReaderDriver.java (new 7), XMLWriter.java (+4 -4)
joe 2003-09-26 07:08 Rev.: 2

Initial commit

11 lines of code changed in 2 files:

  • src/java/com/thoughtworks/xstream/xml: XMLReader.java (new 7), XMLWriter.java (new 4)