/******************************************************************************* * 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_namespaceas.ttcn // Description: // References: // Rev: // Prodnr: // Updated: Tue Sep 15 11:21:37 2014 // Contact: http://ttcn.ericsson.se // //////////////////////////////////////////////////////////////////////////////// // Generated from file(s): // - namespaceas.xsd // /* xml version = "1.0" encoding = "UTF-8" */ // /* targetnamespace = "www.example.org/namespaceas_e" */ //////////////////////////////////////////////////////////////////////////////// // Modification header(s): //----------------------------------------------------------------------------- // Modified by: // Modification date: // Description: // Modification contact: //------------------------------------------------------------------------------ //////////////////////////////////////////////////////////////////////////////// module www_example_org_namespaceas_e { import from XSD all; import from www_example_org_imported2 all; type Foobar SomeType with { variant "element"; }; type record Type { Foobar something optional, Foobar foobar } with { variant "element"; variant (foobar) "namespace as 'www.example.org/imported2' prefix 'other'"; }; type record OtherType { XSD.Integer billingAccountNumber, record { Foobar base } something, record { Bar base } something2, record { XSD.String something optional } something3, record { XSD.String something } something4 } with { variant (billingAccountNumber) "namespace as 'www.example.org/imported2' prefix 'other'"; variant (something.base) "namespace as 'www.example.org/imported2' prefix 'other'"; variant (something.base) "untagged"; variant (something2.base) "namespace as 'www.example.org/imported2' prefix 'other'"; variant (something2.base) "untagged"; }; } with { encode "XML"; variant "namespace as 'www.example.org/namespaceas' prefix 'this'"; variant "controlNamespace 'http://www.w3.org/2001/XMLSchema-instance' prefix 'xsi'"; }