RE: [xml-dev] Can XML Schemas do this?

From
Rodriguez, Sergio <>
To
'Mike Plusch ' <>
Date
2003-01-20T18:39:11Z
ID
<>
Thread
RE: [xml-dev] Can XML Schemas do this?
Ok. I have even a much better one (using a ficticious syntax):

defmet: !(age? && birth?);

Then what's the big deal with "ConciseXML"?

-----Original Message-----
From: Mike Plusch
To: xml-dev
Sent: 20-Jan-03 11:54 AM
Subject: Re: [xml-dev] Can XML Schemas do this?

Sorry about that, I forgot to convert the method's implementation
to XML 1.0.  Here is the method below in XML 1.0:

<defmethod>
 <not>
 <attributes>
  <execute_path> age <is><attributes>optional</attributes></is>
    <and> <attributes> <execute_path> birth <is> <attributes> optional
</attributes> </is> </execute_path>
          </attributes>
    </and>
  </execute_path>
 </attributes>
 </not>
 </defmethod>

ConciseXML equivalent:
<defmethod> <not age.<is optional/>.<and birth.<is optional/> /> </>

_Plusch