Sync with 5.4.0
[deliverable/titan.core.git] / regression_test / XML / TTCNandXML / E0.ttcn
1 /******************************************************************************
2 * Copyright (c) 2000-2015 Ericsson Telecom AB
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Eclipse Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/epl-v10.html
7 ******************************************************************************/
8 module E0
9 {
10
11 type record E00
12 {
13 charstring name,
14 integer index
15 }
16
17 type record E01
18 {
19 charstring name,
20 integer index
21 }
22 with {
23 variant "element";
24 variant "name as uncapitalized";
25 }
26
27
28
29 template E01 MyE0Template :=
30 {
31 name := "name",
32 index := 3
33 }
34
35 } with {
36 encode "XML";
37 variant /*(all)*/ "name as uncapitalized"
38 }
This page took 0.033537 seconds and 6 git commands to generate.