blob: d87a94fe306d358531cd12aa5b781d19f30db021 [file] [log] [blame]
/*
* Copyright (C) 2017 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.android.layoutlib.bridge.remote.server.adapters;
import com.android.ide.common.rendering.api.ActionBarCallback;
import com.android.ide.common.rendering.api.ResourceReference;
import com.android.layout.remote.api.RemoteActionBarCallback;
import com.android.tools.layoutlib.annotations.NotNull;
import java.rmi.RemoteException;
import java.util.List;
public class RemoteActionBarCallbackAdapter extends ActionBarCallback {
private final RemoteActionBarCallback mDelegate;
public RemoteActionBarCallbackAdapter(@NotNull RemoteActionBarCallback remote) {
mDelegate = remote;
}
@Override
public List<ResourceReference> getMenuIds() {
try {
return mDelegate.getMenuIds();
} catch (RemoteException e) {
throw new RuntimeException(e);
}
}
@Override
public boolean getSplitActionBarWhenNarrow() {
try {
return mDelegate.getSplitActionBarWhenNarrow();
} catch (RemoteException e) {
throw new RuntimeException(e);
}
}
@Override
public int getNavigationMode() {
try {
return mDelegate.getNavigationMode();
} catch (RemoteException e) {
throw new RuntimeException(e);
}
}
@Override
public String getSubTitle() {
try {
return mDelegate.getSubTitle();
} catch (RemoteException e) {
throw new RuntimeException(e);
}
}
@Override
public HomeButtonStyle getHomeButtonStyle() {
try {
return mDelegate.getHomeButtonStyle();
} catch (RemoteException e) {
throw new RuntimeException(e);
}
}
@Override
public boolean isOverflowPopupNeeded() {
try {
return mDelegate.isOverflowPopupNeeded();
} catch (RemoteException e) {
throw new RuntimeException(e);
}
}
}