(int propType, int defaultValue)
| 513 | } |
| 514 | |
| 515 | public int getIntProp(int propType, int defaultValue) { |
| 516 | PropListItem item = lookupProperty(propType); |
| 517 | if (item == null) { |
| 518 | return defaultValue; |
| 519 | } |
| 520 | return item.intValue; |
| 521 | } |
| 522 | |
| 523 | public int getExistingIntProp(int propType) { |
| 524 | PropListItem item = lookupProperty(propType); |
no test coverage detected