Source for file FreezableObject.php
Documentation is available at FreezableObject.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: * Defines an object that has a modifiable state and a read-only (frozen) state.
- 28: *
- 32: *
- 34: */
- 36: {
- 42: /**
- 43: * Makes the object unmodifiable.
- 45: */
- 47: {
- 49: }
- 53: /**
- 54: * Is the object unmodifiable?
- 56: */
- 58: {
- 60: }
- 64: /**
- 65: * Creates a modifiable clone of the object.
- 67: */
- 69: {
- 71: }
- 75: /**
- 77: */
- 79: {
- 82: }
- 83: }
- 85: }