Creating Elements with Simple Content and Attributes : simpleContent « 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 » simpleContent 
3. 54. 3. Creating Elements with Simple Content and Attributes
When declaring an element that has simple content, you start with a basic element declaration: 

<element name="phone"
    <!-- Specify type here --> 
</element> 

Within the element declaration, you include a <complexType> declaration in which you specify that you want your element to have simple content. 
You do this by creating a <complexType> declaration that contains a <simpleContent> element. 
The <simpleContent> element indicates that the <complexType> cannot contain child elements. 
It may contain attributes, but otherwise the content will be defined by a simple type.

<element name="phone"
    <complexType> 
        <simpleContent> 
            <!-- Specify type here --> 
        </simpleContent> 
    </complexType> 
</element> 

Within the <simpleContent> element, you can create an <extension> declaration. 
You must use an <extension> declaration because you will be extending an existing data type by adding attribute declarations. 

<element name="phone">
  <complexType>
    <simpleContent>
      <extension base="string">
        <attribute name="kind" type="string" default="Home" />
      </extension>
    </simpleContent>
  </complexType>
</element>


Any of the following examples are allowable <phone>elements based on the previous declaration: 

<phone kind="Home">001-909-555-1212</phone> 
<phone>001-909-555-1212</phone> 
<phone />
3. 54. simpleContent
3. 54. 1. The simpleContent element is used if the complex type may only have text content
3. 54. 2. Defining Elements to Contain Only Text
3. 54. 3. Creating Elements with Simple Content and Attributes
3. 54. 4. element based on simple type
3. 54. 5. As simple content models
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.