. */ namespace Doctrine\ORM\Query\AST; /** * SimpleStateFieldPathExpression ::= IdentificationVariable "." SimpleStateField * * @author Guilherme Blanco * @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @link http://www.doctrine-project.org * @since 2.0 * @version $Revision$ */ class SimpleStateFieldPathExpression extends Node { private $_identificationVariable = null; private $_simpleStateField = null; public function __construct($identificationVariable, $simpleStateField) { $this->_identificationVariable = $identificationVariable; $this->_simpleStateField = $simpleStateField; } /* Getters */ public function getIdentificationVariable() { return $this->_identificationVariable; } public function getSimpleStateField() { return $this->_simpleStateField; } public function dispatch($sqlWalker) { return $sqlWalker->walkSimpleStateFieldPathExpression($this); } }