/**
  * Creates a new LineContains using the passed in
  * Reader for instantiation.
  *
  * @param object A Reader object providing the underlying stream.
  *               Must not be <code>null</code>.
  *
  * @return object A new filter based on this configuration, but filtering
  *         the specified reader
  */
 function chain(Reader $reader)
 {
     $newFilter = new LineContains($reader);
     $newFilter->setContains($this->getContains());
     $newFilter->setInitialized(true);
     $newFilter->setProject($this->getProject());
     return $newFilter;
 }
示例#2
0
 function addLineContains(LineContains $o)
 {
     $o->setProject($this->project);
     $this->filterReaders[] = $o;
 }