appInfo and help-text in annotation : annotation « XML Schema « XML

Home
XML
1.CSS Style
2.SVG
3.XML Schema
4.XQuery
5.XSLT stylesheet
XML » XML Schema » annotation 
appInfo and help-text in annotation


File: Data.xml
<?xml version="1.0"?>
<fullName xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
          xsi:schemaLocation="http://www.java2s.com Schema.xsd"
          xmlns="http://www.java2s.com"
          language="en">
 first last
</fullName>

File: Schema.xsd

<?xml version="1.0"?>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
  targetNamespace="http://www.java2s.com"
  xmlns:addr="http://www.java2s.com">
  <xsd:annotation>
    <xsd:documentation xml:lang="en-us">
      This is the documentation
      <a href="http://www.java2s.com">XML</a>
    </xsd:documentation>
  </xsd:annotation>
  <xsd:element name="fullName">
    <xsd:annotation>
      <xsd:appinfo>
        <help-text>Enter the person's full fullName.</help-text>
      </xsd:appinfo>
    </xsd:annotation>
    <xsd:complexType>
      <xsd:simpleContent>
        <xsd:extension base="xsd:string">
          <xsd:attributeGroup ref="addr:nationality" />
        </xsd:extension>
      </xsd:simpleContent>
    </xsd:complexType>
  </xsd:element>
  <xsd:attributeGroup name="nationality">
    <xsd:attribute name="language" type="xsd:language" />
  </xsd:attributeGroup>
</xsd:schema>

 
Related examples in the same category
1.Add annotation to xml schema
2.English version of annotation documentation
3.Hyper link in annotation
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.