1803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lampackage com.android.setupwizardlib.test.util;
2803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam
3803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lamimport android.content.Context;
4803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lamimport android.content.res.Configuration;
5803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lamimport android.graphics.drawable.Drawable;
6803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lamimport android.net.Uri;
7803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lamimport android.os.Bundle;
8803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lamimport android.view.InputQueue;
9803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lamimport android.view.KeyEvent;
10803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lamimport android.view.LayoutInflater;
11803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lamimport android.view.MotionEvent;
12803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lamimport android.view.SurfaceHolder;
13803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lamimport android.view.View;
14803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lamimport android.view.ViewGroup;
15803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lamimport android.view.Window;
16803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam
17803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lampublic class MockWindow extends Window {
18803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam
19803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    public MockWindow(Context context) {
20803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam        super(context);
21803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    }
22803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam
23803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    @Override
24803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    public void takeSurface(SurfaceHolder.Callback2 callback2) {
25803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam        throw new UnsupportedOperationException("Unexpected method call on mock");
26803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    }
27803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam
28803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    @Override
29803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    public void takeInputQueue(InputQueue.Callback callback) {
30803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam        throw new UnsupportedOperationException("Unexpected method call on mock");
31803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    }
32803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam
33803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    @Override
34803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    public boolean isFloating() {
35803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam        throw new UnsupportedOperationException("Unexpected method call on mock");
36803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    }
37803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam
38803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    @Override
39803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    public void setContentView(int i) {
40803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam        throw new UnsupportedOperationException("Unexpected method call on mock");
41803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    }
42803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam
43803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    @Override
44803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    public void setContentView(View view) {
45803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam        throw new UnsupportedOperationException("Unexpected method call on mock");
46803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    }
47803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam
48803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    @Override
49803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    public void setContentView(View view, ViewGroup.LayoutParams layoutParams) {
50803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam        throw new UnsupportedOperationException("Unexpected method call on mock");
51803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    }
52803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam
53803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    @Override
54803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    public void addContentView(View view, ViewGroup.LayoutParams layoutParams) {
55803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam        throw new UnsupportedOperationException("Unexpected method call on mock");
56803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    }
57803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam
58803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    @Override
59803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    public View getCurrentFocus() {
60803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam        throw new UnsupportedOperationException("Unexpected method call on mock");
61803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    }
62803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam
63803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    @Override
64803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    public LayoutInflater getLayoutInflater() {
65803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam        throw new UnsupportedOperationException("Unexpected method call on mock");
66803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    }
67803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam
68803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    @Override
69803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    public void setTitle(CharSequence charSequence) {
70803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam        throw new UnsupportedOperationException("Unexpected method call on mock");
71803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    }
72803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam
73803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    @Override
74803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    public void setTitleColor(int i) {
75803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam        throw new UnsupportedOperationException("Unexpected method call on mock");
76803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    }
77803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam
78803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    @Override
79803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    public void openPanel(int i, KeyEvent keyEvent) {
80803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam        throw new UnsupportedOperationException("Unexpected method call on mock");
81803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    }
82803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam
83803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    @Override
84803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    public void closePanel(int i) {
85803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam        throw new UnsupportedOperationException("Unexpected method call on mock");
86803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    }
87803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam
88803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    @Override
89803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    public void togglePanel(int i, KeyEvent keyEvent) {
90803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam        throw new UnsupportedOperationException("Unexpected method call on mock");
91803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    }
92803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam
93803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    @Override
94803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    public void invalidatePanelMenu(int i) {
95803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam        throw new UnsupportedOperationException("Unexpected method call on mock");
96803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    }
97803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam
98803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    @Override
99803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    public boolean performPanelShortcut(int i, int i1, KeyEvent keyEvent, int i2) {
100803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam        throw new UnsupportedOperationException("Unexpected method call on mock");
101803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    }
102803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam
103803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    @Override
104803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    public boolean performPanelIdentifierAction(int i, int i1, int i2) {
105803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam        throw new UnsupportedOperationException("Unexpected method call on mock");
106803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    }
107803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam
108803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    @Override
109803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    public void closeAllPanels() {
110803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam        throw new UnsupportedOperationException("Unexpected method call on mock");
111803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    }
112803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam
113803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    @Override
114803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    public boolean performContextMenuIdentifierAction(int i, int i1) {
115803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam        throw new UnsupportedOperationException("Unexpected method call on mock");
116803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    }
117803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam
118803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    @Override
119803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    public void onConfigurationChanged(Configuration configuration) {
120803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam        throw new UnsupportedOperationException("Unexpected method call on mock");
121803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    }
122803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam
123803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    @Override
124803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    public void setBackgroundDrawable(Drawable drawable) {
125803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam        throw new UnsupportedOperationException("Unexpected method call on mock");
126803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    }
127803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam
128803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    @Override
129803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    public void setFeatureDrawableResource(int i, int i1) {
130803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam        throw new UnsupportedOperationException("Unexpected method call on mock");
131803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    }
132803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam
133803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    @Override
134803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    public void setFeatureDrawableUri(int i, Uri uri) {
135803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam        throw new UnsupportedOperationException("Unexpected method call on mock");
136803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    }
137803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam
138803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    @Override
139803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    public void setFeatureDrawable(int i, Drawable drawable) {
140803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam        throw new UnsupportedOperationException("Unexpected method call on mock");
141803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    }
142803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam
143803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    @Override
144803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    public void setFeatureDrawableAlpha(int i, int i1) {
145803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam        throw new UnsupportedOperationException("Unexpected method call on mock");
146803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    }
147803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam
148803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    @Override
149803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    public void setFeatureInt(int i, int i1) {
150803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam        throw new UnsupportedOperationException("Unexpected method call on mock");
151803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    }
152803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam
153803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    @Override
154803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    public void takeKeyEvents(boolean b) {
155803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam        throw new UnsupportedOperationException("Unexpected method call on mock");
156803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    }
157803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam
158803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    @Override
159803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    public boolean superDispatchKeyEvent(KeyEvent keyEvent) {
160803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam        throw new UnsupportedOperationException("Unexpected method call on mock");
161803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    }
162803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam
163803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    @Override
164803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    public boolean superDispatchKeyShortcutEvent(KeyEvent keyEvent) {
165803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam        throw new UnsupportedOperationException("Unexpected method call on mock");
166803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    }
167803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam
168803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    @Override
169803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    public boolean superDispatchTouchEvent(MotionEvent motionEvent) {
170803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam        throw new UnsupportedOperationException("Unexpected method call on mock");
171803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    }
172803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam
173803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    @Override
174803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    public boolean superDispatchTrackballEvent(MotionEvent motionEvent) {
175803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam        throw new UnsupportedOperationException("Unexpected method call on mock");
176803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    }
177803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam
178803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    @Override
179803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    public boolean superDispatchGenericMotionEvent(MotionEvent motionEvent) {
180803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam        throw new UnsupportedOperationException("Unexpected method call on mock");
181803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    }
182803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam
183803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    @Override
184803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    public View getDecorView() {
185803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam        throw new UnsupportedOperationException("Unexpected method call on mock");
186803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    }
187803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam
188803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    @Override
189803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    public View peekDecorView() {
190803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam        throw new UnsupportedOperationException("Unexpected method call on mock");
191803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    }
192803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam
193803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    @Override
194803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    public Bundle saveHierarchyState() {
195803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam        throw new UnsupportedOperationException("Unexpected method call on mock");
196803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    }
197803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam
198803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    @Override
199803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    public void restoreHierarchyState(Bundle bundle) {
200803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam        throw new UnsupportedOperationException("Unexpected method call on mock");
201803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    }
202803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam
203803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    @Override
204803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    protected void onActive() {
205803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam        throw new UnsupportedOperationException("Unexpected method call on mock");
206803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    }
207803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam
208803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    @Override
209803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    public void setChildDrawable(int i, Drawable drawable) {
210803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam        throw new UnsupportedOperationException("Unexpected method call on mock");
211803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    }
212803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam
213803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    @Override
214803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    public void setChildInt(int i, int i1) {
215803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam        throw new UnsupportedOperationException("Unexpected method call on mock");
216803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    }
217803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam
218803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    @Override
219803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    public boolean isShortcutKey(int i, KeyEvent keyEvent) {
220803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam        throw new UnsupportedOperationException("Unexpected method call on mock");
221803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    }
222803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam
223803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    @Override
224803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    public void setVolumeControlStream(int i) {
225803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam        throw new UnsupportedOperationException("Unexpected method call on mock");
226803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    }
227803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam
228803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    @Override
229803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    public int getVolumeControlStream() {
230803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam        throw new UnsupportedOperationException("Unexpected method call on mock");
231803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    }
232803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam
233803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    @Override
234803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    public int getStatusBarColor() {
235803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam        throw new UnsupportedOperationException("Unexpected method call on mock");
236803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    }
237803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam
238803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    @Override
239803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    public void setStatusBarColor(int i) {
240803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam        throw new UnsupportedOperationException("Unexpected method call on mock");
241803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    }
242803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam
243803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    @Override
244803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    public int getNavigationBarColor() {
245803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam        throw new UnsupportedOperationException("Unexpected method call on mock");
246803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    }
247803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam
248803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    @Override
249803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    public void setNavigationBarColor(int i) {
250803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam        throw new UnsupportedOperationException("Unexpected method call on mock");
251803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam    }
252803f8b1dc47a4adebfab7434b6d8e410f80de14fMaurice Lam}
253