Sign In | Register Now About Bytes | Help | Site Map
Connecting Tech Pros Worldwide

How do I reference a definition and at the same time modify it?

Question posted by: WilliamB (Guest) on June 27th, 2008 07:07 PM
New RELAX NG user here. So let's say I have the following definitions
in my RELAX NG schema:

<define name="DefineElementA">
<element name="ElementA">
<interleave>

<optional>
<element name="ElementB">
<text/>
</element>
</optional>

<optional>
<element name="ElementC">
<text/>
</element>
</optional>

<optional>
<element name="ElementD">
<text/>
</element>
</optional>

</interleave>
</element>
</define>

<define name="DefineElementE">
<interleave>
<ref name="DefineElementA"/>

<optional>
<element name="ElementF">
<text/>
</element>
</optional>

</interleave>
</define>

I want the definition "DefineElementE" to reference the definition
"DefineElementA" like above, but I also want to change the referenced
definition in the context of "DefineElementE" so that element
"ElementD" is required. ElementE is sort of like a subclass of
ElementA: it inherits all of ElementA's child elements. Simply
duplicating ElementA's definition in ElementE and making ElementD
required would break inheritance. Is there another way?

William Beaumont
 
Not the answer you were looking for? Post your question . . .
190,062 Experts ready to help you find a solution.
Sign up for a free account, or Login (if you're already a member).

Latest Articles: Read & Comment
  • Didn't find the answer you were looking for?
    Post Your Question
  • Top Community Contributors