If you wanted to use a method/property of the original class you can extend it but you must use a different name, otherwise you'll get an error about redeclaring the class.
Basically:
class template {}
/* both fail with "cannot redeclare class template */
class template extends template {}
class template {}
Ross
2009-07-14 23:32:18