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

@ -104,6 +104,13 @@ abstract class SearchFilter extends Object {
public function getName() { public function getName() {
return $this->name; return $this->name;
} }
/**
* @param String
*/
public function setName($name) {
$this->name = $name;
}
/** /**
* The full name passed to the constructor, * The full name passed to the constructor,
@ -114,6 +121,13 @@ abstract class SearchFilter extends Object {
public function getFullName() { public function getFullName() {
return $this->fullName; return $this->fullName;
} }
/**
* @param String
*/
public function setFullName($name) {
$this->fullName = $name;
}
/** /**
* Normalizes the field name to table mapping. * Normalizes the field name to table mapping.