110111112113114115116117
int i = getIntProperty(property, defaultValue); try { PropertyUtils.setProperty(c, property, new Integer(i)); } catch (Throwable th) { throw new PreferenceException("Error setting property: " + property, th); } }
120121122123124125126127
int i = getPreference().getInt(property, defaultValue); try { PropertyUtils.setProperty(c, property, new Integer(i)); } catch (Throwable th) { throw new PreferenceException("Error setting property: " + property, th); } }