. */ /** * SelectClause = "SELECT" ["DISTINCT"] SelectExpression {"," SelectExpression} * * @author Guilherme Blanco * @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @link http://www.phpdoctrine.org * @since 2.0 * @version $Revision$ */ class Doctrine_ORM_Query_AST_SelectExpression extends Doctrine_ORM_Query_AST { protected $_expression; protected $_fieldIdentificationVariable; /* Setters */ public function setExpression($expression) { $this->_expression = $expression; } public function setFieldIdentificationVariable($fieldIdentificationVariable) { $this->_fieldIdentificationVariable = $fieldIdentificationVariable; } /* Getters */ public function getExpression() { return $this->_expression; } public function getFieldIdentificationVariable() { return $this->_fieldIdentificationVariable; } }