[
Lists Home |
Date Index |
Thread Index
]
- From: "Philippe Le Hégaret" <Philippe.Le_Hegaret@sophia.inria.fr>
- To: "XML Developers' List" <xml-dev@ic.ac.uk>
- Date: Tue, 03 Nov 1998 02:23:16 +0100
KOML is an XML application to serialize Java Objects
in an XML document. This application is called KOML
for Koala Object Markup Language.
This new version includes bug fix and a minor
change in the language. It is backward compatible
with the version 1.0 .
values (except transient) have a name attribute.
(thanks to Robert Nielsen for his feedback)
Bug fix with Class objects.
Bug fix in close() methods. (thanks to Raj)
Remove File constructors. Now you have:
KOMLSerializer(Writer out, boolean buffered)
KOMLDeserializer(Reader out, boolean buffered)
A new KOML document :
<?xml version='1.0' encoding='ISO-8859-1'?>
<!DOCTYPE koml SYSTEM "http://www.inria.fr/koala/XML/koml11.dtd">
<koml version='1.1'>
<classes>
<class name='java.net.URL' uid='-7627629688361524110' writemethod='true'>
<field name='hashCode' type='int'/>
<field name='port' type='int'/>
<field name='file' type='java.lang.String'/>
<field name='host' type='java.lang.String'/>
<field name='protocol' type='java.lang.String'/>
<field name='ref' type='java.lang.String'/>
</class>
</classes>
<object class='java.net.URL' id='i5'>
<value type='int' name='hashCode'>-1</value>
<value type='int' name='port'>-1</value>
<value type='java.lang.String' name='file'>/koala</value>
<value type='java.lang.String' name='host'>www.inria.fr</value>
<value type='java.lang.String' name='protocol'>http</value>
<null name='ref'/>
</object>
</koml>
Regards,
Philippe.
---------
Philippe Le Hegaret
Philippe.Le_Hegaret@sophia.inria.fr -- http://www.inria.fr/koala/plh/
KOALA/DYADE/BULL @ INRIA - Sophia Antipolis
xml-dev: A list for W3C XML Developers. To post, mailto:xml-dev@ic.ac.uk
Archived as: http://www.lists.ic.ac.uk/hypermail/xml-dev/
To (un)subscribe, mailto:majordomo@ic.ac.uk the following message;
(un)subscribe xml-dev
To subscribe to the digests, mailto:majordomo@ic.ac.uk the following message;
subscribe xml-dev-digest
List coordinator, Henry Rzepa (mailto:rzepa@ic.ac.uk)
|