Default and Fixed Values : default « XML Schema « XML Tutorial

XML Tutorial
1. Introduction
2. Namespace
3. XML Schema
4. XPath
5. XSLT stylesheet
Java
XML
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / C Sharp
C# / CSharp Tutorial
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
XML Tutorial » XML Schema » default 
3. 87. 1. Default and Fixed Values
In XML Schemas, you can declare default and fixed values for elements as well as attributes. 
When declaring default values for elements, you can specify only a text value. 
To specify a default value, simply include the default attribute with the desired value. 

<element name="last" type="string" default="Doe"/> 

<last></last> or <last/> then it would treat the element as: <last>Doe</last> 

If the element does not appear within the document or if the element already has content, 
then the default value is not used. 

When an element's value can never change, simply include a fixedattribute with the fixed value. 

<element name="version" type="string" fixed="1.0"/>
3. 87. default
3. 87. 1. Default and Fixed Values
3. 87. 2. You may not set both the default and fixed attributes at the same time
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.