Home | History | Annotate | Download | only in util

Lines Matching refs:activityName

46    * Adds the status value for the given activityName into the Map.
48 * @param activityName
51 public void setStatus(String activityName, String status) {
52 mMethodList.add(activityName + "." + status + "()");
53 if (mStatusMap.containsKey(activityName)) mStatusMap.remove(activityName);
54 mStatusMap.put(activityName, status);
58 * Gets the status value for the given activityName.
60 * @param activityName
63 public String getStatus(String activityName) {
64 String status = mStatusMap.get(activityName);