Re: [xml-dev] Dilemma: dot notation or attribute

From
Rick Jelliffe <>
To
Date
2002-09-23T09:26:13Z
ID
<040d01c262e3$4281b450$>
Thread
Re: [xml-dev] Dilemma: dot notation or attribute
Two other  approaches are 

<model xmlns:example="http://www.example.com/sample_model.xml">
    <example:vicm name="A" value="23" />
</model>

and

<model xmlns:example="http://www.example.com/sample_model.xml">
    <variable name="A">
        <example:vicm value="23" />
    </variable>
</model>


Expand "vicm" to "valueInSquareCm" if you prefer the longer form, and
make up a dedicated element type for each units you have. 

If you only have a few units, this might provide the best typechecking
if you are using W3C XML Schemas (which falls apart as soon as you 
want attributes to convey type information.) Ugly, eh?

Cheers
Rick Jelliffe