1 package com.android.server.status; 2 3 import android.os.IBinder; 4 import android.view.View; 5 6 class StatusBarNotification { 7 IBinder key; 8 NotificationData data; 9 View view; 10 View contentView; 11 } 12