| 1413 | */ |
| 1414 | |
| 1415 | Element * |
| 1416 | Domain::getElement(int tag) |
| 1417 | { |
| 1418 | TaggedObject *mc = theElements->getComponentPtr(tag); |
| 1419 | |
| 1420 | // if not there return 0 otherwise perform a cast and return that |
| 1421 | if (mc == 0) |
| 1422 | return 0; |
| 1423 | Element *result = (Element *)mc; |
| 1424 | return result; |
| 1425 | } |
| 1426 | |
| 1427 | |
| 1428 | Node * |
no test coverage detected