/****************************************************************************** * Copyright (c) 2000-2016 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 * * Contributors: * Balasko, Jeno * Lovassy, Arpad * Raduly, Csaba * Szabo, Bence Janos * ******************************************************************************/ // // File: www_XmlTest_org_complex_any_e.ttcn // Description: // References: // Rev: // Prodnr: // Updated: Thu Sep 5 17:35:07 2013 // Contact: http://ttcn.ericsson.se // //////////////////////////////////////////////////////////////////////////////// // Generated from file(s): // - XmlTest_complex_any.xsd // /* xml version = "1.0" */ // /* targetnamespace = "www.XmlTest.org/complex_any" */ //////////////////////////////////////////////////////////////////////////////// // Modification header(s): //----------------------------------------------------------------------------- // Modified by: // Modification date: // Description: // Modification contact: //------------------------------------------------------------------------------ //////////////////////////////////////////////////////////////////////////////// module www_XmlTest_org_complex_any_e { import from XSD all; /* This documentum tests based on XML Schema Part 0: Primer Second Edition 5 Advanced Concepts III. The Quantity Report 5.5 Any Element, Any Attribute XML Schema Part 1: Structures Second Edition 3.10.1 The Wildcard Schema Component This is the included schema with proper namespace */ type record ElementContainingXhtml_1 { XSD.String firstField, record length(1 .. infinity) of XSD.String elem_list, XSD.String thirdField } with { variant "element"; variant (firstField) "name as capitalized"; variant (elem_list) "untagged"; variant (elem_list[-]) "anyElement from 'http://www.w3.org/1999/xhtml'"; variant (thirdField) "name as capitalized"; }; type record ElementContainingXhtml_2 { record length(1 .. infinity) of XSD.String elem_list } with { variant "element"; variant (elem_list) "untagged"; variant (elem_list[-]) "anyElement from 'http://www.w3.org/1999/xhtml'"; }; } with { encode "XML"; variant "namespace as 'www.XmlTest.org/complex_any' prefix 'r1'"; variant "controlNamespace 'http://www.w3.org/2001/XMLSchema-instance' prefix 'xsi'"; variant "elementFormQualified"; }