(int propType)
| 521 | } |
| 522 | |
| 523 | public int getExistingIntProp(int propType) { |
| 524 | PropListItem item = lookupProperty(propType); |
| 525 | if (item == null) { |
| 526 | Kit.codeBug(); |
| 527 | } |
| 528 | return item.intValue; |
| 529 | } |
| 530 | |
| 531 | public void putProp(int propType, Object prop) { |
| 532 | if (prop == null) { |
no test coverage detected