robotoworks / mechanoid

Eclipse plugin providing a set of DSL's for the rapid development of Android apps
58 stars 26 forks source link

[MECHPREFS] add updateXXX methods for quick edits #181

Closed fluxtah closed 11 years ago

fluxtah commented 11 years ago

Add updateXXX methods to update preferences using commit() instantly, this adds only convenience.

rather than going:

QuxPreferences.getInstance().edit().putSomething("hello, world").commit()

its better to

QuxPreferences.getInstance().updateSomething("hello, world");

Which only really is optimal for single preference updates (which is quite common in my code base).