setAttributes('rel','stylesheet'); $this->setAttributes('type','text/css'); $this->setAttributes('href',''); $this->setDoubleTag(false); } public function setType($value){ $this->setAttributes('type',$value); } public function getType(){ return $this->getAttributes('type'); } public function setMedia($value){ $this->setAttributes('media',$value); } public function getMedia(){ return $this->getAttributes('media'); } public function setHref($value){ $this->setAttributes('href',$value); } public function getHref(){ return $this->getAttributes('href'); } }