Sync with 5.4.0
[deliverable/titan.core.git] / regression_test / XML / XmlWorkflow / xsd / ranges_float.xsd
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (c) 2000-2015 Ericsson Telecom AB
4
5 All rights reserved. This program and the accompanying materials
6 are made available under the terms of the Eclipse Public License v1.0
7 which accompanies this distribution, and is available at
8 http://www.eclipse.org/legal/epl-v10.html
9 -->
10 <schema xmlns="http://www.w3.org/2001/XMLSchema"
11 xmlns:xs="http://www.w3.org/2001/XMLSchema"
12 xmlns:ns="www.example.org"
13 targetNamespace="www.example.org/ranges/float">
14
15 <annotation><documentation xml:lang="EN">minInclusive, maxInclusive, minExclusive, maxExclusive</documentation></annotation>
16
17 <simpleType name="e9b">
18 <restriction base="float">
19 <minInclusive value="-5"/>
20 </restriction>
21 </simpleType>
22
23 <simpleType name="e9c">
24 <restriction base="float">
25 <minInclusive value="-INF"/>
26 </restriction>
27 </simpleType>
28
29 <simpleType name="e9d">
30 <restriction base="float">
31 <minInclusive value="NaN"/>
32 </restriction>
33 </simpleType>
34
35 <simpleType name="e11b">
36 <restriction base="float">
37 <minExclusive value="NaN"/>
38 </restriction>
39 </simpleType>
40
41 <simpleType name="e12b">
42 <restriction base="float">
43 <maxExclusive value="NaN"/>
44 </restriction>
45 </simpleType>
46
47 <annotation><documentation xml:lang="EN">mixed</documentation></annotation>
48
49 <simpleType name="e19b">
50 <restriction base="float">
51 <minInclusive value="-5"/>
52 <maxExclusive value="-1"/>
53 </restriction>
54 </simpleType>
55
56 <simpleType name="e19c">
57 <restriction base="float">
58 <minInclusive value="-INF"/>
59 <maxInclusive value="-1"/>
60 </restriction>
61 </simpleType>
62
63 <simpleType name="e19d">
64 <restriction base="float">
65 <maxInclusive value="NaN"/>
66 </restriction>
67 </simpleType>
68
69
70 </schema>
This page took 0.047633 seconds and 6 git commands to generate.