getRight() 공개 메소드

Get the value of the model's "right" field.
public getRight ( ) : integer
리턴 integer
예제 #1
0
파일: Move.php 프로젝트: yajra/baum
 /**
  * Check wether there should be changes in the downward tree structure.
  *
  * @return boolean
  */
 protected function hasChange()
 {
     return !($this->bound1() == $this->node->getRight() || $this->bound1() == $this->node->getLeft());
 }