setName() 공개 메소드

사용 중단:
public setName ( $name )
예제 #1
0
파일: ClassType.php 프로젝트: jave007/test
 /**
  * @param  string  without $
  * @param  mixed
  * @return Property
  */
 public function addProperty($name, $value = NULL)
 {
     $property = new Property();
     return $this->properties[$name] = $property->setName($name)->setValue($value);
 }