Changeset 278
- Timestamp:
- 11/01/07 14:33:28 (1 year ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/2.3/classes/phing/filters/XsltFilter.php
r144 r278 287 287 288 288 /** 289 * Sets expression value (alias to the setExpression()) method. 290 * 291 * @param string $v 292 * @see setExpression() 293 */ 294 public function setValue($v) 295 { 296 $this->setExpression($v); 297 } 298 299 /** 300 * Gets expression value (alias to the getExpression()) method. 301 * 302 * @param string $v 303 * @see getExpression() 304 */ 305 public function getValue() 306 { 307 return $this->getExpression(); 308 } 309 310 /** 289 311 * Sets expression value. 290 312 * @param string $expr branches/2.3/docs/phing_guide/book/chapters/appendixes/AppendixB-CoreTasks.html
r274 r278 1856 1856 <p> 1857 1857 Additionally, you can use <em><param></em> tags with a 1858 <em>name</em> and a <em> value</em>attribute. These parameters are then1858 <em>name</em> and a <em>expression</em> (or <em>value</em> alias) attribute. These parameters are then 1859 1859 available from within the xsl style sheet. 1860 1860 </p>
