* @copyright Copyright (c) 2008 The PHP Reader Project Workgroup * @license http://code.google.com/p/php-reader/wiki/License New BSD License * @version $Rev: 65 $ */ final class ID3_Frame_MCDI extends ID3_Frame { /** * Returns the CD TOC binary dump. * * @return string */ public function getData() { return $this->_data; } /** * Sets the CD TOC binary dump. * * @param string $data The CD TOC binary dump string. */ public function setData($data) { parent::setData($data); } }