summaryrefslogtreecommitdiffstats
path: root/1.4.0/dom/codeGen/1.4/om/xsEnumeration.php
blob: 5b5a2c75cefbaf307887e3b638618ba0e367133a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?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 xsEnumeration extends _elementSet
{
  function xsEnumeration()
  {
    $this->_addAttribute( 'value', array( 'type' => 'xs:integer' ) );
	
	$this->_addElement( 'xsAnnotation', array( 'minOccurs' => '0', 'maxOccurs' => 'unbounded' ) );
	
    $this->type[] = 'xsEnumeration';
    parent::_typedData();
  }
}

?>