/**
  * get single OmbMishandeling instance from a DOMElement
  *
  * @param DOMElement $node
  * @return OmbMishandeling
  */
 public static function fromDOMElement(DOMElement $node)
 {
     $o = new OmbMishandeling();
     $o->assignByHash(self::domNodeToHash($node, self::$FIELD_NAMES, self::$DEFAULT_VALUES, self::$FIELD_TYPES));
     $o->notifyPristine();
     return $o;
 }