Global type versus Local type : Global Local « 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 » Global Local 
3. 96. 1. Global type versus Local type
Global declarations are declarations that appear as direct children of the <schema> element. 
Global element declarations can be reused throughout the XML Schema. 
Local declarations do not have the <schema> element.
Local types can be used only in their specific context. 

Referring to an Existing Global Element 

To refer to a global element declaration, include a ref attribute and specify the name of the global element as the value.

<element ref="target:first"/> 

An XML Schema Document Referencing Globally Defined Declarations

<xsd:schema
   xmlns:xsd="http://www.w3.org/2001/XMLSchema"
   elementFormDefault="qualified"
   targetNamespace="http://www.java2java.com/namespaces/pub"
   xmlns="http://www.java2java.com/namespaces/pub">

    <xsd:element name="publications">
      <xsd:complexType>
       <xsd:sequence>
        <xsd:element ref="book"/>
       </xsd:sequence>
      </xsd:complexType>
    </xsd:element>
    
    <xsd:element name="book">
      <xsd:complexType>
       <xsd:sequence>
        <xsd:element ref="title"/>
        <xsd:element ref="author"/>
        <xsd:element ref="description"/>
       </xsd:sequence>
       <xsd:attribute name="isbn" type="xsd:string"/>
      </xsd:complexType>
    </xsd:element>
    
    <xsd:element name="title" type="xsd:string"/>
    <xsd:element name="author" type="xsd:string"/>
    <xsd:element name="description" type="xsd:string"/>

</xsd:schema>
3. 96. Global Local
3. 96. 1. Global type versus Local type
3. 96. 2. An XML Schema Using Inline (or Local) Declarations
3. 96. 3. XML Schema Structures
3. 96. 4. Local and Global Declarations
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.