| 1518 | } |
| 1519 | |
| 1520 | LoadPattern * |
| 1521 | Domain::getLoadPattern(int tag) |
| 1522 | { |
| 1523 | TaggedObject *mc = theLoadPatterns->getComponentPtr(tag); |
| 1524 | // if not there return 0 otherwise perform a cast and return that |
| 1525 | if (mc == 0) |
| 1526 | return 0; |
| 1527 | LoadPattern *result = (LoadPattern *)mc; |
| 1528 | return result; |
| 1529 | } |
| 1530 | |
| 1531 | |
| 1532 | double |
no test coverage detected