propertyName = (string) $propertyName; $this->propertyValue = (string) $propertyValue; $this->isPublic = (string) $isPublic; } /** Get property value * @return String value of property */ public function getValue() { return $this->propertyValue; } /** Get property name * @return String name of property */ public function getName() { return $this->propertyName; } /** Get property isPublic flag * @return String isPublic flag of property */ public function getIsPublic() { return $this->isPublic; } /** Set property value * * @param String new value */ public function setValue($value) { $this->propertyValue = (string) $value; } /** Set property name * * @param String new name */ public function setName($propertyName) { $this->propertyName = (string) $propertyName; } /** Set isPublic flag * * @param String isPublic flag, "true" or "false" */ public function setIsPublic($isPublic) { $this->isPublic = (string) $isPublic; } } ?>