/******************************************************************************* * Copyright (c) 2000-2015 Ericsson Telecom AB * * XSD to TTCN-3 Translator version: CRL 113 200/4 R3A * * 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_unqualified_element_attrib_e.ttcn // Description: // References: // Rev: // Prodnr: // Updated: Mon Aug 10 13:23:26 2014 // Contact: http://ttcn.ericsson.se // //////////////////////////////////////////////////////////////////////////////// // Generated from file(s): // - unqualified_element_attrib.xsd // /* xml version = "1.0" encoding = "UTF-8" */ // /* targetnamespace = "www.example.org/unqualified/element/attrib/e" */ //////////////////////////////////////////////////////////////////////////////// // Modification header(s): //----------------------------------------------------------------------------- // Modified by: // Modification date: // Description: // Modification contact: //------------------------------------------------------------------------------ //////////////////////////////////////////////////////////////////////////////// module www_example_org_unqualified_element_attrib { import from XSD all; type record Elements { XSD.String elem1, XSD.String elem2, XSD.String elem3 } with { variant "name as uncapitalized"; variant "element"; variant (elem2) "form as qualified"; }; type record Attributes { XSD.String attrib1 optional, XSD.String attrib2 optional, XSD.String attrib3 optional } with { variant "name as uncapitalized"; variant "element"; variant (attrib1) "attribute"; variant (attrib2) "form as qualified"; variant (attrib2) "attribute"; variant (attrib3) "attribute"; }; } with { encode "XML"; variant "namespace as 'www.example.org/unqualified/element/attrib' prefix 'ns23'"; variant "controlNamespace 'http://www.w3.org/2001/XMLSchema-instance' prefix 'xsi'"; }