| 1704 | } |
| 1705 | |
| 1706 | LoadPattern * |
| 1707 | Domain::getLoadPattern(int tag) |
| 1708 | { |
| 1709 | TaggedObject *mc = theLoadPatterns->getComponentPtr(tag); |
| 1710 | // if not there return 0 otherwise perform a cast and return that |
| 1711 | if (mc == 0) |
| 1712 | return 0; |
| 1713 | LoadPattern *result = (LoadPattern *)mc; |
| 1714 | return result; |
| 1715 | } |
| 1716 | |
| 1717 | |
| 1718 | double |
no test coverage detected