00001 <?php
00002
00011 class SDRResultsInfoObj extends SXMLModel {
00012 private static $ATTRIBUTES = array(
00013 'totalNumResults' => array(),
00014 'numSkipped' => array(),
00015 'numReturned' => array(),
00016 'field' => array('type' => 'string')
00017 );
00018
00027 public function __construct($xml = null) {
00028 parent::__construct();
00029
00030 $this->registerAttributes(self::$ATTRIBUTES);
00031 $this->registerNodeName('resultsInfo');
00032
00033 if($xml)
00034 $this->setXML($xml);
00035 }
00036 }
00037
00038 ?>