summaryrefslogtreecommitdiffstats
path: root/1.4.0/dom/codeGen/1.4/om/xsExtension.php
diff options
context:
space:
mode:
Diffstat (limited to '1.4.0/dom/codeGen/1.4/om/xsExtension.php')
-rw-r--r--1.4.0/dom/codeGen/1.4/om/xsExtension.php24
1 files changed, 24 insertions, 0 deletions
diff --git a/1.4.0/dom/codeGen/1.4/om/xsExtension.php b/1.4.0/dom/codeGen/1.4/om/xsExtension.php
new file mode 100644
index 0000000..e0ff68a
--- /dev/null
+++ b/1.4.0/dom/codeGen/1.4/om/xsExtension.php
@@ -0,0 +1,24 @@
+<?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 xsExtension extends _elementSet
+{
+ function xsExtension()
+ {
+ $this->_addElement( 'xsAttribute', array( 'minOccurs' => '0', 'maxOccurs' => 'unbounded' ) );
+ $this->_addElement( 'xsSequence', array( 'minOccurs' => '0', 'maxOccurs' => 'unbounded' ) );
+
+ $this->_addAttribute( 'base', array( 'type' => 'xs:string' ) );
+
+ $this->type[] = 'xsExtension';
+ parent::_elementSet();
+ }
+}
+
+?> \ No newline at end of file