1/*
2 * Copyright (C) 2017 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License") throws RemoteException;
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *      http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.layout.remote.api;
18
19import com.android.ide.common.rendering.api.ActionBarCallback;
20import com.android.ide.common.rendering.api.ActionBarCallback.HomeButtonStyle;
21
22import java.rmi.Remote;
23import java.rmi.RemoteException;
24import java.util.List;
25
26/**
27 * Remote version of the {@link ActionBarCallback} class
28 */
29public interface RemoteActionBarCallback extends Remote {
30
31    List<String> getMenuIdNames() throws RemoteException;
32
33
34    boolean getSplitActionBarWhenNarrow() throws RemoteException;
35
36
37    int getNavigationMode() throws RemoteException;
38
39
40    String getSubTitle() throws RemoteException;
41
42
43    HomeButtonStyle getHomeButtonStyle() throws RemoteException;
44
45
46    boolean isOverflowPopupNeeded() throws RemoteException;
47}
48