summaryrefslogtreecommitdiff
path: root/buildscripts/phing/classes/phing/types/PhingFilterReader.php
diff options
context:
space:
mode:
Diffstat (limited to 'buildscripts/phing/classes/phing/types/PhingFilterReader.php')
-rwxr-xr-x[-rw-r--r--]buildscripts/phing/classes/phing/types/PhingFilterReader.php20
1 files changed, 10 insertions, 10 deletions
diff --git a/buildscripts/phing/classes/phing/types/PhingFilterReader.php b/buildscripts/phing/classes/phing/types/PhingFilterReader.php
index eb45f894..2337977a 100644..100755
--- a/buildscripts/phing/classes/phing/types/PhingFilterReader.php
+++ b/buildscripts/phing/classes/phing/types/PhingFilterReader.php
@@ -1,6 +1,6 @@
<?php
/*
- * $Id: PhingFilterReader.php,v 1.9 2005/10/05 20:23:22 hlellelid Exp $
+ * $Id: fee06c9abce6700d773004bd83a5312d94c5aa29 $
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
@@ -22,15 +22,15 @@
include_once 'phing/types/DataType.php';
include_once 'phing/types/Parameter.php';
-/*
+/**
* A PhingFilterReader is a wrapper class that encloses the className
* and configuration of a Configurable FilterReader.
*
* @author Yannick Lecaillez <yl@seasonfive.com>
- * @version $Revision: 1.9 $
+ * @version $Id$
* @see FilterReader
* @package phing.types
-*/
+ */
class PhingFilterReader extends DataType {
private $className;
@@ -84,16 +84,16 @@ class PhingFilterReader extends DataType {
$o = $this->createClasspath();
$o->setRefid($r);
}
-
- function addParam(Parameter $param) {
- $this->parameters[] = $param;
- }
+
+ function addParam(Parameter $param) {
+ $this->parameters[] = $param;
+ }
function createParam() {
$num = array_push($this->parameters, new Parameter());
return $this->parameters[$num-1];
}
-
+
function getParams() {
// We return a COPY
$ret = array();
@@ -133,4 +133,4 @@ class PhingFilterReader extends DataType {
}
}
-?>
+