0byt3m1n1
Path:
/
data
/
applications
/
aps
/
typo3
/
4.5.5-0
/
standard
/
htdocs
/
t3lib
/
tree
/
[
Home
]
File: class.t3lib_tree_abstracttree.php
<?php /*************************************************************** * Copyright notice * * (c) 2010-2011 TYPO3 Tree Team <http://forge.typo3.org/projects/typo3v4-extjstrees> * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is * free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * The GNU General Public License can be found at * http://www.gnu.org/copyleft/gpl.html. * A copy is found in the textfile GPL.txt and important notices to the license * from the author is found in LICENSE.txt distributed with these scripts. * * * This script is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * This copyright notice MUST APPEAR in all copies of the script! ***************************************************************/ /** * Abstract Tree * * @author Stefan Galinski <stefan.galinski@gmail.com> * @package TYPO3 * @subpackage t3lib */ abstract class t3lib_tree_AbstractTree { /** * Data Provider * * @var t3lib_tree_AbstractDataProvider */ protected $dataProvider = NULL; /** * Tree Node Decorator * * @var t3lib_tree_renderer_Abstract */ protected $nodeRenderer = NULL; /** * @param t3lib_tree_AbstractDataProvider $dataProvider * @return void */ public function setDataProvider(t3lib_tree_AbstractDataProvider $dataProvider) { $this->dataProvider = $dataProvider; } /** * @return t3lib_tree_AbstractDataProvider */ public function getDataProvider() { return $this->dataProvider; } /** * @param t3lib_tree_renderer_Abstract $dataProvider * @return void */ public function setNodeRenderer(t3lib_tree_renderer_Abstract $nodeRenderer) { $this->nodeRenderer = $nodeRenderer; } /** * @return t3lib_tree_renderer_Abstract */ public function getNodeRenderer() { return $this->nodeRenderer; } /** * Returns the root node * * @return t3lib_tree_Node */ abstract public function getRoot(); } ?>