616617618619620621622623
* * @return blog or <code>NULL</code>. */ public static Blog restore(Preferences prefs, String prop) { IdNameHolder hld = restore0(prefs, prop); return hld == null ? null : new Blog(hld.id, hld.name); }
647648649650651652653654
* * @return category or <code>NULL</code>. */ public static Category restore(Preferences prefs, String prop) { IdNameHolder hld = restore0(prefs, prop); return hld == null ? null : new Category(hld.id, hld.name); }