/******************************************************************************* * Copyright (c) 2000-2015 Ericsson Telecom AB * * XSD to TTCN-3 Translator version: CRL 113 200/5 R2A * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html *******************************************************************************/ // // File: www_example_org_simpletype_ref_e.ttcn // Description: // References: // Rev: // Prodnr: // Updated: Thu Sep 10 13:13:32 2014 // Contact: http://ttcn.ericsson.se // //////////////////////////////////////////////////////////////////////////////// // Generated from file(s): // - simpletype_ref.xsd // /* xml version = "1.0" encoding = "UTF-8" */ // /* targetnamespace = "www.example.org/simpletype/ref" */ //////////////////////////////////////////////////////////////////////////////// // Modification header(s): //----------------------------------------------------------------------------- // Modified by: // Modification date: // Description: // Modification contact: //------------------------------------------------------------------------------ //////////////////////////////////////////////////////////////////////////////// module www_example_org_simpletype_ref_e { import from XSD all; type record SomeType { XSD.String something } with { variant "element"; }; type record Type { XSD.String something optional } with { variant "element"; }; type record OtherType { SomeType billingAccountNumber, XSD.Long installmentPlanId (-99999 .. 99999), XSD.String info length(0 .. 30) optional }; type record of XSD.String Start_list with { variant "name as uncapitalized"; variant "list"; }; type Start_list List_ref length(4); type XSD.String Info; } with { encode "XML"; variant "namespace as 'www.example.org/simpletype/ref' prefix 'this'"; variant "controlNamespace 'http://www.w3.org/2001/XMLSchema-instance' prefix 'xsi'"; }