. */ /** * @package Doctrine * @url http://www.phpdoctrine.com * @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @author Jukka Hassinen * @version $Id$ */ /** * class Doctrine_Import * Main responsible of performing import operation. Delegates database schema * reading to a reader object and passes the result to a builder object which * builds a Doctrine data model. */ class Doctrine_Import { /** Aggregations: */ /** Compositions: */ /*** Attributes: ***/ /** * @access private */ private $reader; /** * @access private */ private $builder; /** * * @return * @access public */ public function import( ) { } // end of member function import /** * * @param Doctrine_Import_Reader reader * @return * @access public */ public function setReader( $reader ) { } // end of member function setReader /** * * @param Doctrine_Import_Builder builder * @return * @access public */ public function setBuilder( $builder ) { } // end of member function setBuilder } // end of Doctrine_Import ?>