/******************************************************************************* * Copyright Ericsson Telecom AB * * XSD to TTCN-3 Translator * * 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_XmlTest_org_complex_import_e.ttcn // Description: // References: // Rev: // Prodnr: // Updated: Thu Sep 5 17:35:03 2013 // Contact: http://ttcn.ericsson.se // //////////////////////////////////////////////////////////////////////////////// // Generated from file(s): // - XmlTest_complex_import_pos.xsd // /* xml version = "1.0" */ // /* targetnamespace = "www.XmlTest.org/complex_import" */ //////////////////////////////////////////////////////////////////////////////// // Modification header(s): //----------------------------------------------------------------------------- // Modified by: // Modification date: // Description: // Modification contact: //------------------------------------------------------------------------------ //////////////////////////////////////////////////////////////////////////////// module www_XmlTest_org_complex_import_e { import from XSD all; import from www_XmlTest_org_complex_include_e all; /* This documentum tests based on XML Schema Part 0: Primer Second Edition 5 Advanced Concepts III. The Quantity Report 5.4 Importing Types XML Schema Part 1: Structures Second Edition ... ETSI ES 201 873-9 V4.1.2 This is the importing schema */ type record PurchaseReportImport { XSD.Duration period optional, XSD.Date periodEnding optional, RegionsType regions, PartsType parts } with { variant "name as uncapitalized"; variant "element"; variant (period) "attribute"; variant (periodEnding) "attribute"; }; } with { encode "XML"; variant "namespace as 'www.XmlTest.org/complex_import' prefix 'imp'"; variant "controlNamespace 'http://www.w3.org/2001/XMLSchema-instance' prefix 'xsi'"; variant "elementFormQualified"; }