Source for file IComponentContainer.php
Documentation is available at IComponentContainer.php
- 1: <?php
- 3: /**
- 4: * Nette Framework
- 5: *
- 6: * Copyright (c) 2004, 2009 David Grudl (http://davidgrudl.com)
- 7: *
- 8: * This source file is subject to the "Nette license" that is bundled
- 9: * with this package in the file license.txt.
- 10: *
- 11: * For more information please see http://nettephp.com
- 12: *
- 18: */
- 26: /**
- 27: * Containers are objects that logically contain zero or more IComponent components.
- 28: *
- 32: */
- 34: {
- 36: /**
- 37: * Adds the specified component to the IComponentContainer.
- 41: */
- 44: /**
- 45: * Removes a component from the IComponentContainer.
- 48: */
- 51: /**
- 52: * Returns single component.
- 55: */
- 58: /**
- 59: * Iterates over a components.
- 63: */
- 66: }