Update README.linux
[deliverable/titan.core.git] / regression_test / XML / XmlWorkflow / xsd / minBound_maxBound.xsd
CommitLineData
970ed795
EL
1<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 Copyright (c) 2000-2014 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"
11xmlns:xs="http://www.w3.org/2001/XMLSchema"
12xmlns:ns="www.example.org"
13targetNamespace="www.example.org">
14
15<annotation><documentation xml:lang="EN">minInclusive, maxInclusive, minExclusive, maxExclusive</documentation></annotation>
16
17<simpleType name="e9a">
18 <restriction base="integer">
19 <minInclusive value="-5"/>
20 </restriction>
21</simpleType>
22
23<simpleType name="e9b">
24 <restriction base="float">
25 <minInclusive value="-5"/>
26 </restriction>
27</simpleType>
28
29<simpleType name="e9c">
30 <restriction base="float">
31 <minInclusive value="-INF"/>
32 </restriction>
33</simpleType>
34
35<simpleType name="e9d">
36 <restriction base="float">
37 <minInclusive value="NaN"/>
38 </restriction>
39</simpleType>
40
41<simpleType name="e10a">
42 <restriction base="positiveInteger">
43 <maxInclusive value="100"/>
44 </restriction>
45</simpleType>
46
47<simpleType name="e11a">
48 <restriction base="integer">
49 <minExclusive value="-5"/>
50 </restriction>
51</simpleType>
52
53<simpleType name="e11b">
54 <restriction base="float">
55 <minExclusive value="NaN"/>
56 </restriction>
57</simpleType>
58
59<simpleType name="e12a">
60 <restriction base="positiveInteger">
61 <maxExclusive value="100"/>
62 </restriction>
63</simpleType>
64
65<simpleType name="e12b">
66 <restriction base="float">
67 <maxExclusive value="NaN"/>
68 </restriction>
69</simpleType>
70
71<annotation><documentation xml:lang="EN">mixed</documentation></annotation>
72
73<simpleType name="e19a">
74 <restriction base="integer">
75 <minInclusive value="-5"/>
76 <maxInclusive value="-1"/>
77 </restriction>
78</simpleType>
79
80<simpleType name="e19b">
81 <restriction base="float">
82 <minInclusive value="-5"/>
83 <maxExclusive value="-1"/>
84 </restriction>
85</simpleType>
86
87<simpleType name="e19c">
88 <restriction base="float">
89 <minInclusive value="-INF"/>
90 <maxInclusive value="-1"/>
91 </restriction>
92</simpleType>
93
94<simpleType name="e19d">
95 <restriction base="float">
96 <maxInclusive value="NaN"/>
97 </restriction>
98</simpleType>
99
100<simpleType name="e110a">
101 <restriction base="positiveInteger">
102 <maxInclusive value="100"/>
103 </restriction>
104</simpleType>
105
106<simpleType name="e111a">
107 <restriction base="integer">
108 <minExclusive value="-5"/>
109 <maxExclusive value="100"/>
110 </restriction>
111</simpleType>
112
113
114</schema>
This page took 0.034108 seconds and 5 git commands to generate.