Changeset 12 for branches/2.2/classes
- Timestamp:
- 02/11/06 18:32:48 (3 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/2.2/classes/phing/tasks/system/PropertyTask.php
r1 r12 2 2 3 3 /* 4 * $Id : PropertyTask.php,v 1.14 2006/02/02 20:27:10 hlellelid Exp$4 * $Id$ 5 5 * 6 6 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS … … 29 29 * @author Andreas Aderhold <andi@binarycloud.com> 30 30 * @author Hans Lellelid <hans@xmpl.org> 31 * @version $Revision : 1.14$31 * @version $Revision$ 32 32 * @package phing.tasks.system 33 33 */ … … 72 72 $this->value = (string) $value; 73 73 } 74 74 75 /** 76 * Sets value of property to CDATA tag contents. 77 * @param string $values 78 * @since 2.2.0 79 */ 80 public function addText($value) { 81 $this->setValue($value); 82 } 75 83 76 84 /** Get the value of current property component. */ … … 78 86 return $this->value; 79 87 } 80 81 88 82 89 /** Set a file to use as the source for properties. */
