Home | History | Annotate | Download | only in view

Lines Matching defs:WindowId

37 public class WindowId implements Parcelable {
41 * Subclass for observing changes to the focus state of an {@link WindowId}.
43 * {@link WindowId} objects, since this class is fairly heavy-weight -- the
52 WindowId token;
65 WindowId token;
77 final HashMap<IBinder, WindowId> mRegistrations
78 = new HashMap<IBinder, WindowId>();
85 onFocusGained((WindowId)msg.obj);
88 onFocusLost((WindowId)msg.obj);
109 public abstract void onFocusGained(WindowId token);
114 public abstract void onFocusLost(WindowId token);
167 if (otherObj instanceof WindowId) {
168 return mToken.asBinder().equals(((WindowId) otherObj)
198 public static final Parcelable.Creator<WindowId> CREATOR
199 = new Parcelable.Creator<WindowId>() {
200 public WindowId createFromParcel(Parcel in) {
202 return target != null ? new WindowId(target) : null;
205 public WindowId[] newArray(int size) {
206 return new WindowId[size];
216 public WindowId(IWindowId target) {
221 public WindowId(IBinder target) {