Changeset 1661
- Timestamp:
- 06/29/08 13:07:43 (2 months ago)
- Files:
-
- trunk/src/main/php/net/stubbles/lang/stubArrayAccessor.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/rdbms/persistence/annotation/stubEntityAnnotation.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/streams/stubFileInputStream.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/streams/stubFileOutputStream.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/util/xjconf/stubConfigXJConfExtension.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/main/php/net/stubbles/lang/stubArrayAccessor.php
r1568 r1661 154 154 * removes given offset 155 155 * 156 * @param string|int $offset156 * @param string|int $offset 157 157 */ 158 158 public function offsetUnset($offset) trunk/src/main/php/net/stubbles/rdbms/persistence/annotation/stubEntityAnnotation.php
r1613 r1661 74 74 * returns the default order by statement to be used when fetching more then one instance 75 75 * 76 * @return unknown76 * @return string 77 77 */ 78 78 public function getDefaultOrder() trunk/src/main/php/net/stubbles/streams/stubFileInputStream.php
r1622 r1661 28 28 * constructor 29 29 * 30 * @param string|resource $file 31 * @param string $mode option opening mode if $file is a filename 30 * @param string|resource $file 31 * @param string $mode option opening mode if $file is a filename 32 * @throws stubIllegalArgumentException 32 33 */ 33 34 public function __construct($file, $mode = 'rb') trunk/src/main/php/net/stubbles/streams/stubFileOutputStream.php
r1605 r1661 21 21 * constructor 22 22 * 23 * @param string|resource $file 24 * @param string $mode option opening mode if $file is a filename 23 * @param string|resource $file 24 * @param string $mode option opening mode if $file is a filename 25 * @throws stubIllegalArgumentException 25 26 */ 26 27 public function __construct($file, $mode = 'wb') trunk/src/main/php/net/stubbles/util/xjconf/stubConfigXJConfExtension.php
r1624 r1661 93 93 $resultTag->setValue($value); 94 94 return $resultTag; 95 // add registry values96 95 } elseif ($tag->getName() === 'regConfig' && $tag->hasAttribute('method') === true && $tag->hasAttribute('name') === true) { 96 // add registry values 97 97 $methodName = $tag->getAttribute('method'); 98 98 $refClass = new ReflectionClass('stubConfig');
