1 package api.cintoo.messages.context; 2 3 10 public interface ContextMap { 11 17 public void put(Context context, String bundleName); 18 19 25 public String get(Context context); 26 27 35 public Context findChildContext(Context context); 36 37 45 public Context findParentContext(Context context); 46 47 53 public Context findMatchingContext(Context context); 54 55 58 public void clear(); 59 } 60 | Popular Tags |