/******************************************************************************* * Copyright Ericsson Telecom AB 2014 * * XSD to TTCN-3 Translator version: CRL 113 200/5 R2A * * 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_attrib_enum_e.ttcn // Description: // References: // Rev: // Prodnr: // Updated: Wed Oct 28 13:49:38 2015 // Contact: http://ttcn.ericsson.se // //////////////////////////////////////////////////////////////////////////////// // Generated from file(s): // - attrib_enum_e.xsd // /* xml version = "1.0" encoding = "UTF-8" */ // /* targetnamespace = "www.example.org/attrib/enum/e" */ //////////////////////////////////////////////////////////////////////////////// // Modification header(s): //----------------------------------------------------------------------------- // Modified by: // Modification date: // Description: // Modification contact: //------------------------------------------------------------------------------ //////////////////////////////////////////////////////////////////////////////// module www_example_org_attrib_enum { import from XSD all; type record AttribEnum { enumerated { first, second } attr optional } with { variant (attr) "attribute"; }; } with { encode "XML"; variant "namespace as 'www.example.org/attrib/enum' prefix 'this'"; variant "controlNamespace 'http://www.w3.org/2001/XMLSchema-instance' prefix 'xsi'"; }