aboutsummaryrefslogtreecommitdiffstats
path: root/com_actionbarsherlock/src/com/actionbarsherlock/internal/view/menu/MenuItemMule.java
blob: 5a80998328f82e91377cf0a739b676efc3025285 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
package com.actionbarsherlock.internal.view.menu;

import android.content.Intent;
import android.graphics.drawable.Drawable;
import android.view.ActionProvider;
import android.view.MenuItem;
import android.view.SubMenu;
import android.view.View;
import android.view.ContextMenu.ContextMenuInfo;

/** Used to carry an instance of our version of MenuItem through a native channel. */
public class MenuItemMule implements MenuItem {
    private static final String ERROR = "Cannot interact with object designed for temporary "
            + "instance passing. Make sure you using both SherlockFragmentActivity and "
            + "SherlockFragment.";


    private final com.actionbarsherlock.view.MenuItem mItem;

    public MenuItemMule(com.actionbarsherlock.view.MenuItem item) {
        mItem = item;
    }

    public com.actionbarsherlock.view.MenuItem unwrap() {
        return mItem;
    }


    @Override
    public boolean collapseActionView() {
        throw new IllegalStateException(ERROR);
    }

    @Override
    public boolean expandActionView() {
        throw new IllegalStateException(ERROR);
    }

    @Override
    public ActionProvider getActionProvider() {
        throw new IllegalStateException(ERROR);
    }

    @Override
    public View getActionView() {
        throw new IllegalStateException(ERROR);
    }

    @Override
    public char getAlphabeticShortcut() {
        throw new IllegalStateException(ERROR);
    }

    @Override
    public int getGroupId() {
        throw new IllegalStateException(ERROR);
    }

    @Override
    public Drawable getIcon() {
        throw new IllegalStateException(ERROR);
    }

    @Override
    public Intent getIntent() {
        throw new IllegalStateException(ERROR);
    }

    @Override
    public int getItemId() {
        throw new IllegalStateException(ERROR);
    }

    @Override
    public ContextMenuInfo getMenuInfo() {
        throw new IllegalStateException(ERROR);
    }

    @Override
    public char getNumericShortcut() {
        throw new IllegalStateException(ERROR);
    }

    @Override
    public int getOrder() {
        throw new IllegalStateException(ERROR);
    }

    @Override
    public SubMenu getSubMenu() {
        throw new IllegalStateException(ERROR);
    }

    @Override
    public CharSequence getTitle() {
        throw new IllegalStateException(ERROR);
    }

    @Override
    public CharSequence getTitleCondensed() {
        return mItem.getTitleCondensed();
        //throw new IllegalStateException(ERROR);
    }

    @Override
    public boolean hasSubMenu() {
        throw new IllegalStateException(ERROR);
    }

    @Override
    public boolean isActionViewExpanded() {
        throw new IllegalStateException(ERROR);
    }

    @Override
    public boolean isCheckable() {
        throw new IllegalStateException(ERROR);
    }

    @Override
    public boolean isChecked() {
        throw new IllegalStateException(ERROR);
    }

    @Override
    public boolean isEnabled() {
        throw new IllegalStateException(ERROR);
    }

    @Override
    public boolean isVisible() {
        throw new IllegalStateException(ERROR);
    }

    @Override
    public MenuItem setActionProvider(ActionProvider arg0) {
        throw new IllegalStateException(ERROR);
    }

    @Override
    public MenuItem setActionView(View arg0) {
        throw new IllegalStateException(ERROR);
    }

    @Override
    public MenuItem setActionView(int arg0) {
        throw new IllegalStateException(ERROR);
    }

    @Override
    public MenuItem setAlphabeticShortcut(char arg0) {
        throw new IllegalStateException(ERROR);
    }

    @Override
    public MenuItem setCheckable(boolean arg0) {
        throw new IllegalStateException(ERROR);
    }

    @Override
    public MenuItem setChecked(boolean arg0) {
        throw new IllegalStateException(ERROR);
    }

    @Override
    public MenuItem setEnabled(boolean arg0) {
        throw new IllegalStateException(ERROR);
    }

    @Override
    public MenuItem setIcon(Drawable arg0) {
        throw new IllegalStateException(ERROR);
    }

    @Override
    public MenuItem setIcon(int arg0) {
        throw new IllegalStateException(ERROR);
    }

    @Override
    public MenuItem setIntent(Intent arg0) {
        throw new IllegalStateException(ERROR);
    }

    @Override
    public MenuItem setNumericShortcut(char arg0) {
        throw new IllegalStateException(ERROR);
    }

    @Override
    public MenuItem setOnActionExpandListener(OnActionExpandListener arg0) {
        throw new IllegalStateException(ERROR);
    }

    @Override
    public MenuItem setOnMenuItemClickListener(OnMenuItemClickListener arg0) {
        throw new IllegalStateException(ERROR);
    }

    @Override
    public MenuItem setShortcut(char arg0, char arg1) {
        throw new IllegalStateException(ERROR);
    }

    @Override
    public void setShowAsAction(int arg0) {
        throw new IllegalStateException(ERROR);
    }

    @Override
    public MenuItem setShowAsActionFlags(int arg0) {
        throw new IllegalStateException(ERROR);
    }

    @Override
    public MenuItem setTitle(CharSequence arg0) {
        throw new IllegalStateException(ERROR);
    }

    @Override
    public MenuItem setTitle(int arg0) {
        throw new IllegalStateException(ERROR);
    }

    @Override
    public MenuItem setTitleCondensed(CharSequence arg0) {
        throw new IllegalStateException(ERROR);
    }

    @Override
    public MenuItem setVisible(boolean arg0) {
        throw new IllegalStateException(ERROR);
    }
}