Sync with 5.4.2
[deliverable/titan.core.git] / regression_test / XML / XmlWorkflow / XmlTest_xsds / XmlTest_simple_enum.xsd
1 <!--
2 Copyright (c) 2000-2015 Ericsson Telecom AB
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 <schema xmlns="http://www.w3.org/2001/XMLSchema"
10 xmlns:ns17="www.XmlTest.org/simple_enum"
11 targetNamespace="www.XmlTest.org/simple_enum">
12 <annotation>
13 <documentation xml:lang="en">
14 This documentum tests based on
15 XML Schema Part 0: Primer Second Edition
16 2.7 Building Content models
17 </documentation>
18 </annotation>
19
20 <simpleType name="AccountActionType">
21 <restriction base="int">
22 <enumeration value="0">
23 <annotation>
24 <documentation>Set</documentation>
25 </annotation>
26 </enumeration>
27 <enumeration value="1">
28 <annotation>
29 <documentation>Add</documentation>
30 </annotation>
31 </enumeration>
32 <enumeration value="2">
33 <annotation>
34 <documentation>Subtract</documentation>
35 </annotation>
36 </enumeration>
37 <enumeration value="3">
38 <annotation>
39 <documentation>Reset</documentation>
40 </annotation>
41 </enumeration>
42 <enumeration value="4">
43 <annotation>
44 <documentation>Remove</documentation>
45 </annotation>
46 </enumeration>
47 <enumeration value="5">
48 <annotation>
49 <documentation>Create</documentation>
50 </annotation>
51 </enumeration>
52 </restriction>
53 </simpleType>
54
55 <element name="AccountAction" type="ns17:AccountActionType"/>
56
57 </schema>
This page took 0.030894 seconds and 5 git commands to generate.