XMLPatterns.com

Home

Introduction

Patterns
Categorized
Alphabetical
Chronological

Books

Links

About
Content Type Label
Printable Version

Abstract:

Parameter entities are created to represent different types of values within a DTD.


Problem:

DTDs provide limited type information for content of attributes and elements. Type information is often useful to have in a language.


Context:

Any time DTDs are used and it is useful to convey type information.


Forces:

Expressing type information helps in creating understandable and maintainable DTDs.


Solution:

Create parameter entities to represent different data types. These parameters can be used in attribute and element content descriptions.


Examples:

The following DTD fragment is taken from a payroll system. The first line defines a parameter entity to represent a employee number type. In each place in the DTD where a employee number is needed as content, this parameter entity is used.
                            

<!ENTITY % EmployeeNum "NMTOKEN">

<!ELEMENT Order (LineItem*)>

<!ELEMENT Employee (Name, Address)>
<!ATTLIST Employee Number %EmployeeNum;>

<!ELEMENT PayRecord (Period, Hours)>
<!ATTLIST PayRecord Employee %EmployeeNum;>

                            
                          


Discussion:

This pattern does not change the structure or constraints of the documents that are instances of the DTD, but it does make the DTD easier to understand and maintain.

This pattern increases understandability of the DTD by documenting the intended use of the content types to readers of the DTD. Looking at the above example we can see that it becomes obvious that the Employee's Number attribute and the PayRecord's Employee attribute contain the same type of value. If they were both just NMTOKENs this may not have been as obvious.

Maintainability of DTDs is increased by allowing all related content types to be changed from a single place. For instance, in the Examples section above if the company this payroll system was created for merges with another company, and the employee numbers from the new company can contain a space, the "NMTOKEN" attribute type is no longer valid. By changing the EmployeeNum parameter entity to "CDATA", all references to the employee number in the DTD can be changed.



Related Patterns:

This is an example of a Flyweight.


Known Uses:

XHTML uses Content Type Labels extensively. For example:
                            

<!ENTITY % URI "CDATA">
<!-- a Uniform Resource Identifier, see [RFC2396] -->

<!ENTITY % FrameTarget "NMTOKEN">
<!-- render in this frame -->

<!-- document base URI -->

<!ELEMENT base EMPTY>
<!ATTLIST base
href        %URI;          #IMPLIED
target      %FrameTarget;  #IMPLIED
>

                            
                          
The above excepts shows how Content Type Labels are used to make it clearer what is expected in the attributes of the base element.


References:

The document XML Modularization of HTML 4.0 by Murray Altheim explains the use of this pattern in XHTML.


Visit our sponsors: (Interested in advertising on XMLPatterns.com?)