/******************************************************************************* * 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: MyTypes_e.ttcn // Description: // References: // Rev: // Prodnr: // Updated: Mon Oct 12 10:09:06 2014 // Contact: http://ttcn.ericsson.se // //////////////////////////////////////////////////////////////////////////////// // Generated from file(s): // - module_typename_conversion_1.xsd // /* xml version = "1.0" encoding = "UTF-8" */ // /* targetnamespace = "MyTypes_e" */ //////////////////////////////////////////////////////////////////////////////// // Modification header(s): //----------------------------------------------------------------------------- // Modified by: // Modification date: // Description: // Modification contact: //------------------------------------------------------------------------------ //////////////////////////////////////////////////////////////////////////////// module MyTypes { import from XSD all; type XSD.String MyTypes_2 with { variant "name as 'MyTypes__'"; variant "attribute"; }; type XSD.String MyTypes_1 with { variant "name as 'MyTypes_'"; variant "element"; }; type record MyTypes_3 { XSD.String myTypes } with { variant "name as 'MyTypes'"; variant "element"; variant (myTypes) "name as capitalized"; }; } with { encode "XML"; variant "namespace as 'MyTypes'"; variant "controlNamespace 'http://www.w3.org/2001/XMLSchema-instance' prefix 'xsi'"; }