/******************************************************************************* * Copyright (c) 2000-2015 Ericsson Telecom AB * * XSD to TTCN-3 Translator version: CRL 113 200/5 R31 * * 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_anyattrib_single_e.ttcn // Description: // References: // Rev: // Prodnr: // Updated: Fri Aug 28 10:17:20 2013 // Contact: http://ttcn.ericsson.se // //////////////////////////////////////////////////////////////////////////////// // Generated from file(s): // - anyattrib_single.xsd // /* xml version = "1.0" encoding = "UTF-8" */ // /* targetnamespace = "www.example.org/anyattrib/single" */ //////////////////////////////////////////////////////////////////////////////// // Modification header(s): //----------------------------------------------------------------------------- // Modified by: // Modification date: // Description: // Modification contact: //------------------------------------------------------------------------------ //////////////////////////////////////////////////////////////////////////////// module www_example_org_anyattrib_single_e { import from XSD all; type record E25seq { XSD.Token attrInGroup1 optional, XSD.Token attrInGroup2 optional, record of XSD.String attr optional, XSD.String titleElemBase, XSD.String forenameElemBase, XSD.String surnameElemBase } with { variant "name as uncapitalized"; variant (attrInGroup1) "attribute"; variant (attrInGroup2) "attribute"; variant (attr) "anyAttributes from 'http://www.w3.org/1999/xhtml','www.example.org/anyattrib/single','www.example.org/anyattrib/single'"; }; type record E45c { record of XSD.String attr optional } with { variant "name as uncapitalized"; variant "element"; 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 "element"; variant (attr) "anyAttributes from 'www.example.org/anyattrib/single',unqualified,'http://www.example.org/attribute'"; }; type record ExtBase { record of XSD.String attr optional, XSD.String field } with { variant (attr) "anyAttributes from 'www.example.org/anyattrib/single'"; }; type record MyType { XSD.String ding optional, record of XSD.String attr optional, XSD.String field } with { variant "element"; variant (ding) "attribute"; variant (attr) "anyAttributes from 'www.example.org/anyattrib/single'"; }; type record ExtBase2 { record of XSD.String attr optional, XSD.String field } with { variant (attr) "anyAttributes except unqualified, 'www.example.org/anyattrib/single'"; }; type record MyType2 { XSD.String ding optional, record of XSD.String attr optional, XSD.String field } with { variant "element"; variant (ding) "attribute"; variant (attr) "anyAttributes from 'www.example.org/anyattrib/single',unqualified, 'www.example.org/anyattrib/single'"; }; } with { encode "XML"; variant "namespace as 'www.example.org/anyattrib/single' prefix 'this'"; variant "controlNamespace 'http://www.w3.org/2001/XMLSchema-instance' prefix 'xsi'"; }