Can I redefine an XML element definition?
Posted
by joe
on Stack Overflow
See other posts from Stack Overflow
or by joe
Published on 2010-04-28T15:58:21Z
Indexed on
2010/04/28
16:43 UTC
Read the original article
Hit count: 232
For example,
I would like to include <feetFromWater>
in my <house>
element. But here is the catch... I would like to keep the element name <house>
and I do not want to modify the original definition.
FILE: baseProperty.mod
<!ELEMENT house (%size;%stories;)>
<!ATTLIST house %univ-atts;
outputclass CDATA #IMPLIED
>
FILE: beachHouse.mod (This file references baseProperty.mod)
<!ELEMENT beachHouse (%size;%stories;%feetFromWater)>
<!ATTLIST beachHouse %univ-atts;
outputclass CDATA #IMPLIED
>
Is there a way to do the following without renaming from <house>
to <beachHouse>
?
© Stack Overflow or respective owner