Home | History | Annotate | Download | only in backup
      1 package com.google.android.libraries.backup;
      2 
      3 /** A predicate that determines whether a given key should be backed up. */
      4 public interface BackupKeyPredicate {
      5 
      6   /** Returns whether a given key should be backed up. */
      7   boolean shouldBeBackedUp(String key);
      8 }
      9