Last sync 2016.04.01
[deliverable/titan.core.git] / regression_test / XML / XmlWorkflow / XmlTest_expectedTtcns / www_example_org_simpletype_ref_e.ttcn
1 /******************************************************************************
2 * Copyright (c) 2000-2016 Ericsson Telecom AB
3 *
4 * XSD to TTCN-3 Translator
5 *
6 * All rights reserved. This program and the accompanying materials
7 * are made available under the terms of the Eclipse Public License v1.0
8 * which accompanies this distribution, and is available at
9 * http://www.eclipse.org/legal/epl-v10.html
10 *
11 * Contributors:
12 * Balasko, Jeno
13 * Szabo, Bence Janos
14 *
15 ******************************************************************************/
16 //
17 // File: www_example_org_simpletype_ref_e.ttcn
18 // Description:
19 // References:
20 // Rev:
21 // Prodnr:
22 // Updated: Thu Sep 10 13:13:32 2014
23 // Contact: http://ttcn.ericsson.se
24 //
25 ////////////////////////////////////////////////////////////////////////////////
26 // Generated from file(s):
27 // - simpletype_ref.xsd
28 // /* xml version = "1.0" encoding = "UTF-8" */
29 // /* targetnamespace = "www.example.org/simpletype/ref" */
30 ////////////////////////////////////////////////////////////////////////////////
31 // Modification header(s):
32 //-----------------------------------------------------------------------------
33 // Modified by:
34 // Modification date:
35 // Description:
36 // Modification contact:
37 //------------------------------------------------------------------------------
38 ////////////////////////////////////////////////////////////////////////////////
39
40
41 module www_example_org_simpletype_ref_e {
42
43
44 import from XSD all;
45
46
47 type record SomeType
48 {
49 XSD.String something
50 }
51 with {
52 variant "element";
53 };
54
55
56 type record Type
57 {
58 XSD.String something optional
59 }
60 with {
61 variant "element";
62 };
63
64
65 type record OtherType
66 {
67 SomeType billingAccountNumber,
68 XSD.Long installmentPlanId (-99999 .. 99999),
69 XSD.String info length(0 .. 30) optional
70 };
71
72
73 type record of XSD.String Start_list
74 with {
75 variant "name as uncapitalized";
76 variant "list";
77 };
78
79
80 type Start_list List_ref length(4);
81
82
83 type XSD.String Info;
84
85
86 }
87 with {
88 encode "XML";
89 variant "namespace as 'www.example.org/simpletype/ref' prefix 'this'";
90 variant "controlNamespace 'http://www.w3.org/2001/XMLSchema-instance' prefix 'xsi'";
91 }
This page took 0.033078 seconds and 5 git commands to generate.