summaryrefslogtreecommitdiffstats
path: root/1.4.0/dom/codeGen/1.5/om/xsAll.php
diff options
context:
space:
mode:
Diffstat (limited to '1.4.0/dom/codeGen/1.5/om/xsAll.php')
-rw-r--r--1.4.0/dom/codeGen/1.5/om/xsAll.php27
1 files changed, 27 insertions, 0 deletions
diff --git a/1.4.0/dom/codeGen/1.5/om/xsAll.php b/1.4.0/dom/codeGen/1.5/om/xsAll.php
new file mode 100644
index 0000000..bbe1b45
--- /dev/null
+++ b/1.4.0/dom/codeGen/1.5/om/xsAll.php
@@ -0,0 +1,27 @@
+<?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 xsAll extends _elementSet
+{
+ function xsAll()
+ {
+ $this->_addElement( 'xsElement', array( 'minOccurs' => '0', 'maxOccurs' => 'unbounded' ) );
+ $this->_addElement( 'xsAttribute', array( 'minOccurs' => '0', 'maxOccurs' => 'unbounded' ) );
+
+ $this->type[] = "xsAll";
+ parent::_elementSet();
+ }
+
+ function addAllElement( & $e )
+ {
+ $this->addElement( $e );
+ }
+}
+
+?> \ No newline at end of file