/******************************************************************************* * 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: http_www_example_org_wildcards_e.ttcn // Description: // References: // Rev: // Prodnr: // Updated: Mon Jun 1 11:35:23 2015 // Contact: http://ttcn.ericsson.se // //////////////////////////////////////////////////////////////////////////////// // Generated from file(s): // - anyattribute_optional.xsd // /* xml version = "1.0" encoding = "UTF-8" */ // /* targetnamespace = "http://www.example.org/wildcards/e" */ //////////////////////////////////////////////////////////////////////////////// // Modification header(s): //----------------------------------------------------------------------------- // Modified by: // Modification date: // Description: // Modification contact: //------------------------------------------------------------------------------ //////////////////////////////////////////////////////////////////////////////// module http_www_example_org_wildcards { import from XSD all; type E45 AnyAttrAnyNamespace with { variant "name as uncapitalized"; variant "element"; }; type E45b AnyAttrThisNamespace with { variant "name as uncapitalized"; variant "element"; }; type record E45 { XSD.Date aa optional, XSD.String attr optional, XSD.Date bb optional, record of XSD.String attr_1 optional } with { variant "name as uncapitalized"; variant (aa) "attribute"; variant (attr) "attribute"; variant (bb) "attribute"; variant (attr_1) "anyAttributes"; variant (attr_1) "name as 'attr'"; }; type record E45a { record of XSD.String attr optional } with { variant "name as uncapitalized"; variant (attr) "anyAttributes except unqualified, 'http://www.example.org/wildcards'"; }; type record E45b { record of XSD.String attr optional } with { variant "name as uncapitalized"; variant (attr) "anyAttributes from 'http://www.example.org/wildcards'"; }; type record E45c { record of XSD.String attr optional } with { variant "name as uncapitalized"; variant (attr) "anyAttributes from unqualified, 'http://www.example.org/attribute'"; }; type record E45d { record of XSD.String attr optional } with { variant "name as uncapitalized"; variant (attr) "anyAttributes from 'http://www.example.org/wildcards', unqualified, 'http://www.example.org/attribute'"; }; } with { encode "XML"; variant "namespace as 'http://www.example.org/wildcards' prefix 'this'"; variant "controlNamespace 'http://www.w3.org/2001/XMLSchema-instance' prefix 'xsi'"; }