[XML-DEV Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: Remember to RELAX (was RE: Are there still a lot of people usingDTD)

  • From: Murata Makoto <mura034@a...>
  • To: xml-dev@x...
  • Date: Thu, 03 Aug 2000 00:01:52 +0900

how to relaxe
Simon St. Laurent wrote:
> At 04:11 PM 8/1/00 -0400, Bob Kline wrote:
> >I've assumed (from a distance) based on statements that use phrases like
> >"upward compatibility" and "easy transition" that the functionality
> >provided by RELAX was a subset of that provided by XML Schema. However,
> >I haven't found anything in the latter comparable to the attribute- 
> >sensitive content models supported by RELAX. Is this because XML Schema
> >doesn't have such a feature, or just because it's harder to find things
> >in the more densely-worded Schema documentation (or perhaps just because
> >I'm not reading carefully enough)?
> 
> I think there may be a fundamental mismatch between the models used by the
> two systems. XML Schemas seems to take a top-down typing and inheritance
> approach, whie RELAX uses a bottom-up approach with what feels to me like
> set theory. (They did announce the addition of a top-down model as well
> recently.)

RELAX is rather a modest improvement of DTDs, while XML Schema is an
attempt for a grand unification theory of DTDs, object-oriented
programming, and RDB.  As a result, there are some impedence mismatches.  

> For me, RELAX descriptions read more naturally, but it seems to be the
> other way around for the object-oriented developers I always seem to end up
> presenting to.

Next time, you might want to use examples in STEPs 9 and 10 
of "HOW TO RELAX" (http://www.xml.gr.jp/relax).  These STEPs 
was translated only recently.

For example, 

  <tag name="Point"/>

  <elementRule role="Point">
    <sequence>
      <element name="x" type="int"/>
      <element name="y" type="int"/>
    </sequence>
  </elementRule>

permits the following instance:

<Point>
  <x>10</x>
  <y>20</y>
</Point>

Moreover, from a RELAX module containing the above elementRule, 
Relaxer automatically generates a Java class as below:

public class Point implements java.io.Serializable {
    private int x;
    private int y;

....

I will give a talk about Relaxer in Extreme Markup Language 2000. 

Cheers,

MURATA Makoto

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
 

Stylus Studio has published XML-DEV in RSS and ATOM formats, enabling users to easily subcribe to the list from their preferred news reader application.


Stylus Studio Sponsored Links are added links designed to provide related and additional information to the visitors of this website. they were not included by the author in the initial post. To view the content without the Sponsor Links please click here.

Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.