summaryrefslogtreecommitdiffstats
path: root/1.4.0/dom/codeGen/1.5/om/xsSchema.php
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@qt.io>2017-10-06 11:50:27 +0000
committerOswald Buddenhagen <oswald.buddenhagen@qt.io>2017-10-06 16:49:51 +0200
commiteee97c048f9cdc1cc05d6a516a3da56a13accd64 (patch)
tree019e374beaed56be3cbeaff3cf202d41ee427d96 /1.4.0/dom/codeGen/1.5/om/xsSchema.php
Initial import
Diffstat (limited to '1.4.0/dom/codeGen/1.5/om/xsSchema.php')
-rw-r--r--1.4.0/dom/codeGen/1.5/om/xsSchema.php32
1 files changed, 32 insertions, 0 deletions
diff --git a/1.4.0/dom/codeGen/1.5/om/xsSchema.php b/1.4.0/dom/codeGen/1.5/om/xsSchema.php
new file mode 100644
index 0000000..c0b5d8b
--- /dev/null
+++ b/1.4.0/dom/codeGen/1.5/om/xsSchema.php
@@ -0,0 +1,32 @@
+<?php
+/*
+* Copyright 2006 Sony Computer Entertainment Inc.
+*
+* Licensed under the MIT Open Source License, for details please see license.txt or the website
+* http://www.opensource.org/licenses/mit-license.php
+*
+*/
+
+class xsSchema extends _elementSet
+{
+ function xsSchema()
+ {
+ $this->_addElement( 'xsAnnotation', array( 'minOccurs' => '0', 'maxOccurs' => 'unbounded' ) );
+ $this->_addElement( 'xsElement', array( 'minOccurs' => '0', 'maxOccurs' => 'unbounded' ) );
+ $this->_addElement( 'xsSimpleType', array( 'minOccurs' => '0', 'maxOccurs' => 'unbounded' ) );
+ $this->_addElement( 'xsComplexType', array( 'minOccurs' => '0', 'maxOccurs' => 'unbounded' ) );
+ $this->_addElement( 'xsGroup', array( 'minOccurs' => '0', 'maxOccurs' => 'unbounded' ) );
+ $this->_addElement( 'xsImport', array( 'minOccurs' => '0', 'maxOccurs' => 'unbounded' ) );
+
+ $this->_addAttribute( 'targetNamespace', array( 'type' => 'xs:string' ) );
+ $this->_addAttribute( 'elementFormDefault', array( 'type' => 'xs:string' ) );
+ $this->_addAttribute( 'xmlns:xs', array( 'type' => 'xs:string' ) );
+ $this->_addAttribute( 'xmlns', array( 'type' => 'xs:string' ) );
+ $this->_addAttribute( 'version', array( 'type' => 'xs:string' ) );
+
+ $this->type[] = 'xsSchema';
+ parent::_elementSet();
+ }
+}
+
+?> \ No newline at end of file