| 812 | //----------------------------------------------------------------------------- |
| 813 | |
| 814 | bool SimObject::isField( const char* fieldName, bool includeStatic, bool includeDynamic ) |
| 815 | { |
| 816 | const char* strFieldName = StringTable->insert( fieldName ); |
| 817 | |
| 818 | if( includeStatic && getClassRep()->findField( strFieldName ) ) |
| 819 | return true; |
| 820 | |
| 821 | if( includeDynamic && getFieldDictionary() && getFieldDictionary()->findDynamicField( strFieldName ) ) |
| 822 | return true; |
| 823 | |
| 824 | return false; |
| 825 | } |
| 826 | |
| 827 | //----------------------------------------------------------------------------- |
| 828 |
no test coverage detected