private SpecialList newSpecialList() {
   return SpecialList.newSpecialList(
       getString(R.string.special_lists_new),
       new HashMap<String, SpecialListsBaseProperty>(),
       true,
       this);
 }
Ejemplo n.º 2
0
 public static SpecialList firstSpecialSafe(final Context ctx) {
   SpecialList s = SpecialList.firstSpecial();
   if (s == null) {
     s =
         SpecialList.newSpecialList(
             ctx.getString(R.string.list_all),
             new HashMap<String, SpecialListsBaseProperty>(),
             true,
             ctx);
     if (ListMirakel.count() == 0) {
       ListMirakel.safeFirst(ctx);
     }
     s.save(false);
   }
   return s;
 }
 private SpecialList newSpecialList() {
   return SpecialList.newSpecialList(getString(R.string.special_lists_new), "", true, this);
 }