Exemplo n.º 1
0
 /**
  * Constructs a new FieldURI element
  * @param string $fieldURI Identifies the dictionary that contains the member to return. This attribute is required.
  * @param string $fieldIndex Identifies the member of the dictionary to return. This attribute is required.
  * @return null
  */
 public function __construct($fieldURI, $fieldIndex)
 {
     parent::__construct(self::NAME, $fieldURI);
     $this->FieldIndex = $fieldIndex;
 }
Exemplo n.º 2
0
 /**
  * Constructs a new FieldURI element
  * @param string $fieldURI
  * @return null
  */
 public function __construct($fieldURI)
 {
     parent::__construct(self::NAME, $fieldURI);
 }