Sync with 5.4.2
[deliverable/titan.core.git] / regression_test / XML / XmlWorkflow / XmlTest_xsds / XmlTest_decimal_withMinMaxInclusive.xsd
CommitLineData
970ed795 1<!--
3abe9331 2 Copyright (c) 2000-2015 Ericsson Telecom AB
970ed795
EL
3
4 All rights reserved. This program and the accompanying materials
5 are made available under the terms of the Eclipse Public License v1.0
6 which accompanies this distribution, and is available at
7 http://www.eclipse.org/legal/epl-v10.html
8 -->
9<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
10 xmlns:ns32="www.XmlTest.org/decimal_withMinMaxInclusive"
11 targetNamespace="www.XmlTest.org/decimal_withMinMaxInclusive" >
12 <xsd:annotation>
13 <xsd:documentation xml:lang="en">
14 This documentum tests based on
15 XML Schema Part 0: Primer Second Edition,
16 2.3 Simple Types and
17 Appendix B
18
19 </xsd:documentation>
20 </xsd:annotation>
21
22
23<xsd:simpleType name='DecimalMinIncl' >
24 <xsd:restriction base='xsd:decimal'>
25 <xsd:minInclusive value='3.45'/>
26 </xsd:restriction>
27</xsd:simpleType>
28
29<xsd:simpleType name='DecimalMaxIncl' >
30 <xsd:restriction base='xsd:decimal'>
31 <xsd:maxInclusive value='100.89'/>
32 </xsd:restriction>
33</xsd:simpleType>
34
35<xsd:simpleType name='DecimalMinMaxIncl' >
36 <xsd:restriction base='xsd:decimal'>
37 <xsd:minInclusive value='-3.45'/>
38 <xsd:maxInclusive value='100.47'/>
39 </xsd:restriction>
40</xsd:simpleType>
41
42</xsd:schema>
This page took 0.026878 seconds and 5 git commands to generate.