diff options
| -rw-r--r-- | core/java/android/app/smartspace/SmartspaceTargetEvent.java | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/core/java/android/app/smartspace/SmartspaceTargetEvent.java b/core/java/android/app/smartspace/SmartspaceTargetEvent.java index 1e0653d67ace..920b9fe6a34f 100644 --- a/core/java/android/app/smartspace/SmartspaceTargetEvent.java +++ b/core/java/android/app/smartspace/SmartspaceTargetEvent.java @@ -138,6 +138,15 @@ public final class SmartspaceTargetEvent implements Parcelable { dest.writeInt(mEventType); } + @Override + public String toString() { + return "SmartspaceTargetEvent{" + + "mSmartspaceTarget=" + mSmartspaceTarget + + ", mSmartspaceActionId='" + mSmartspaceActionId + '\'' + + ", mEventType=" + mEventType + + '}'; + } + /** * @hide */ |