. */ namespace Doctrine\ORM\Query\AST; /** * SimpleStateFieldPathExpression ::= IdentificationVariable "." SimpleStateField * * @author Guilherme Blanco * @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @link http://www.phpdoctrine.org * @since 2.0 * @version $Revision$ */ class SimpleStateFieldPathExpression extends Node { protected $_identificationVariable = null; protected $_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; } }