*
* @package Extbase
* @subpackage Persistence
- * @version $Id: QueryInterface.php 658 2009-05-16 13:54:16Z jocrau $
+ * @version $Id$
+ * @api
*/
interface Tx_Extbase_Persistence_Typo3QuerySettingsInterface extends Tx_Extbase_Persistence_QuerySettingsInterface {
*/
public function setRespectEnableFields($respectEnableFields);
+ /**
+ * Sets the flag if if the sys language should be respected.
+ *
+ * @param $respectSysLanguage TRUE if the sys language should be respected.
+ * @return $this (fluent interface)
+ * @api
+ */
+ public function setRespectSysLanguage($respectSysLanguage);
+
+ /**
+ * Returns the state, if the sys language should be respected.
+ *
+ * @return boolean TRUE, if the sys language should be respected; otherwise FALSE.
+ */
+ public function getRespectSysLanguage();
+
+
+ /**
+ * Sets the state, if the QueryResult should be returned unmapped.
+ *
+ * @return boolean TRUE, if the QueryResult should be returned unmapped; otherwise FALSE.
+ * @api
+ */
+ public function setReturnRawQueryResult($returnRawQueryResult);
+
+ /**
+ * Returns the state, if the QueryResult should be returned unmapped.
+ *
+ * @return boolean TRUE, if the QueryResult should be returned unmapped; otherwise FALSE.
+ * @api
+ */
+ public function getReturnRawQueryResult();
+
}
?>
\ No newline at end of file