(int propType)
| 505 | } |
| 506 | |
| 507 | public Object getProp(int propType) { |
| 508 | PropListItem item = lookupProperty(propType); |
| 509 | if (item == null) { |
| 510 | return null; |
| 511 | } |
| 512 | return item.objectValue; |
| 513 | } |
| 514 | |
| 515 | public int getIntProp(int propType, int defaultValue) { |
| 516 | PropListItem item = lookupProperty(propType); |
no test coverage detected