/****************************************************************************** * 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_integer_withMaxIncl_e.ttcn // Description: // References: // Rev: // Prodnr: // Updated: Thu Oct 29 15:46:26 2009 // Contact: http://ttcn.ericsson.se // //////////////////////////////////////////////////////////////////////////////// // // Generated from file(s): // // - XmlTest_integer_withMaxIncl.xsd // /* xml version = "1.0" */ // /* targetnamespace = "www.XmlTest.org/integer_withMaxIncl" */ // //////////////////////////////////////////////////////////////////////////////// module www_XmlTest_org_integer_withMaxIncl_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 */ type XSD.Integer IntegerWithNegMaxIncl (-infinity..-200); type XSD.Integer IntegerWithZeroMaxIncl (-infinity..0); type XSD.Integer IntegerWithPosMaxIncl (-infinity..314); } with { encode "XML"; variant "namespace as 'www.XmlTest.org/integer_withMaxIncl' prefix 'ns'"; variant "controlNamespace 'http://www.w3.org/2001/XMLSchema-instance' prefix 'xsi'"; }