MINOR SearchFilter->setName()/setFullName()

This commit is contained in:
Ingo Schommer 2012-03-02 13:41:35 +01:00
parent 9a381d8393
commit c7a301521d

View File

@ -105,6 +105,13 @@ abstract class SearchFilter extends Object {
return $this->name;
}
/**
* @param String
*/
public function setName($name) {
$this->name = $name;
}
/**
* The full name passed to the constructor,
* including any (optional) relations in dot notation.
@ -115,6 +122,13 @@ abstract class SearchFilter extends Object {
return $this->fullName;
}
/**
* @param String
*/
public function setFullName($name) {
$this->fullName = $name;
}
/**
* Normalizes the field name to table mapping.
*