/****************************************************************************** * 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_string_withWhitespace_e.ttcn // Description: // References: // Rev: // Prodnr: // Updated: Thu Sep 5 17:34:59 2013 // Contact: http://ttcn.ericsson.se // //////////////////////////////////////////////////////////////////////////////// // Generated from file(s): // - XmlTest_string_withWhitespace.xsd // /* xml version = "1.0" */ // /* targetnamespace = "http://www.XmlTest.org/string_withWhitespace" */ //////////////////////////////////////////////////////////////////////////////// // Modification header(s): //----------------------------------------------------------------------------- // Modified by: // Modification date: // Description: // Modification contact: //------------------------------------------------------------------------------ //////////////////////////////////////////////////////////////////////////////// module www_XmlTest_org_string_withWhitespace_e { import from XSD all; /* This documentum tests based on XML Schema Part 0: Primer Second Edition, 2.3 Simple Types and Appendix B XML Schema Part 2: Datatypes Second Edition 3 Built-in Datatypes */ /* For WhiteSpace see XML Schema Part 2: Datatypes Second Edition 4.3.6 i.e http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/datatypes.html#rf-whiteSpace and ETSI ES 201 873-9 V4.1.2 / Ch 6.1.5 */ type XSD.String StringWhiteSpaceP with { variant "whiteSpace preserve"; }; type XSD.String StringWhiteSpaceR with { variant "whiteSpace replace"; }; type XSD.String StringWhiteSpaceC with { variant "whiteSpace collapse"; }; } with { encode "XML"; variant "namespace as 'http://www.XmlTest.org/string_withWhitespace' prefix 'wws'"; variant "controlNamespace 'http://www.w3.org/2001/XMLSchema-instance' prefix 'xsi'"; }