質問しても良いですか、paginatorについてなんですが
マニュアルのページングリンク生成の解説が理解できません
http://framework.zend.com/manual/ja/zend.paginator.usage.html

<?php if ($this->pageCount): ?>
<div class="paginationControl">
<!-- 前のページへのリンク -->
<?php if (isset($this->previous)): ?>
<a href="<?php echo $this->url(array('page' => $this->previous)); ?>">
< Previous
</a> |
<?php else: ?>
<span class="disabled">< Previous</span> |
<?php endif; ?>

ここにある $this->previousは前のページの番号を示すプロパティだとして、
$this->url(array('page' => $this->previous)); というのは何ですか?
メソッドを実行してるのかと思ってPaginator関連のファイルを見ても見つかりません
どこで定義されてるものですか?