* DO NOT USE outside the TYPO3CR package! * * The ContextFactory can be used to create a Context that allows to find Node instances that act as the * public API to the TYPO3CR. * * @Flow\Scope("singleton") */ class NodeDataRepository extends Repository { /** * Constants for setNewIndex() */ const POSITION_BEFORE = 1; const POSITION_AFTER = 2; const POSITION_LAST = 3; /** * Maximum possible index */ const INDEX_MAXIMUM = 2147483647; /** * @var \SplObjectStorage */ protected $addedNodes; /** * @var \SplObjectStorage */ protected $removedNodes;