Changeset 926
- Timestamp:
- 09/18/07 22:23:31 (1 year ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/main/php/net/stubbles/rdbms/persistence/creator/stubDatabaseCreator.php
r910 r926 1 1 <?php 2 2 /** 3 * Class for creating the table description for a class.3 * Class for creating the table description for an entity. 4 4 * 5 5 * @author Frank Kleine <mikey@stubbles.net> … … 13 13 ); 14 14 /** 15 * Class for creating the table description for a class.15 * Class for creating the table description for an entity. 16 16 * 17 17 * @package stubbles trunk/src/main/php/net/stubbles/rdbms/persistence/eraser/stubDatabaseEraser.php
r925 r926 1 1 <?php 2 2 /** 3 * Class for erasing the data of a persistableobject within a database.3 * Class for erasing the data of an entity object within a database. 4 4 * 5 5 * @author Frank Kleine <mikey@stubbles.net> … … 16 16 ); 17 17 /** 18 * Class for erasing the data of a persistableobject within a database.18 * Class for erasing the data of an entity object within a database. 19 19 * 20 20 * @package stubbles … … 123 123 124 124 /** 125 * deletes all instances of $persistableClassNameby given criterion125 * deletes all instances of an entity by given criterion 126 126 * 127 * @param stubCriterion $criterion the criterion that denotes all instances to delete127 * @param stubCriterion $criterion the criterion that denotes all instances to delete 128 128 * @param stubBaseReflectionClass $entityClass 129 129 * @return int amount of erased instances
