protected function EasyRdf_Parser_RdfXml::startElementHandler

@ignore

File

drupal/core/vendor/easyrdf/easyrdf/lib/EasyRdf/Parser/RdfXml.php, line 204

Class

EasyRdf_Parser_RdfXml
A pure-php class to parse RDF/XML.

Code

protected function startElementHandler($p, $t, $a) {
  switch ($this->state) {
    case 0:
      return $this
        ->startState0($t, $a);
    case 1:
      return $this
        ->startState1($t, $a);
    case 2:
      return $this
        ->startState2($t, $a);
    case 4:
      return $this
        ->startState4($t, $a);
    case 5:
      return $this
        ->startState5($t, $a);
    case 6:
      return $this
        ->startState6($t, $a);
    default:
      throw new EasyRdf_Exception('startElementHandler() called at state ' . $this->state . ' in ' . $t);
  }
}