| 797 | //----------------------------------------------------------------------------- |
| 798 | |
| 799 | bool SimObject::isMethod( const char* methodName ) |
| 800 | { |
| 801 | if( !methodName || !methodName[0] ) |
| 802 | return false; |
| 803 | |
| 804 | StringTableEntry stname = StringTable->insert( methodName ); |
| 805 | |
| 806 | if( getNamespace() ) |
| 807 | return ( getNamespace()->lookup( stname ) != NULL ); |
| 808 | |
| 809 | return false; |
| 810 | } |
| 811 | |
| 812 | //----------------------------------------------------------------------------- |
| 813 |