3 abstract class PhutilCalendarNode
extends Phobject
{
5 private $attributes = array();
7 final public function getNodeType() {
8 return $this->getPhobjectClassConstant('NODETYPE');
11 final public function setAttribute($key, $value) {
12 $this->attributes
[$key] = $value;
16 final public function getAttribute($key, $default = null) {
17 return idx($this->attributes
, $key, $default);