// Decompiled by Jad v1.5.8e. Copyright 2001 Pavel Kouznetsov. // Jad home page: http://www.geocities.com/kpdus/jad.html // Decompiler options: braces fieldsfirst space lnc package com.google.android.gms.maps; import android.os.RemoteException; import com.google.android.gms.maps.internal.IUiSettingsDelegate; import com.google.android.gms.maps.model.RuntimeRemoteException; public final class UiSettings { private final IUiSettingsDelegate zzaCL; UiSettings(IUiSettingsDelegate iuisettingsdelegate) { zzaCL = iuisettingsdelegate; } public boolean isCompassEnabled() { boolean flag; try { flag = zzaCL.isCompassEnabled(); } catch (RemoteException remoteexception) { throw new RuntimeRemoteException(remoteexception); } return flag; } public boolean isIndoorLevelPickerEnabled() { boolean flag; try { flag = zzaCL.isIndoorLevelPickerEnabled(); } catch (RemoteException remoteexception) { throw new RuntimeRemoteException(remoteexception); } return flag; } public boolean isMapToolbarEnabled() { boolean flag; try { flag = zzaCL.isMapToolbarEnabled(); } catch (RemoteException remoteexception) { throw new RuntimeRemoteException(remoteexception); } return flag; } public boolean isMyLocationButtonEnabled() { boolean flag; try { flag = zzaCL.isMyLocationButtonEnabled(); } catch (RemoteException remoteexception) { throw new RuntimeRemoteException(remoteexception); } return flag; } public boolean isRotateGesturesEnabled() { boolean flag; try { flag = zzaCL.isRotateGesturesEnabled(); } catch (RemoteException remoteexception) { throw new RuntimeRemoteException(remoteexception); } return flag; } public boolean isScrollGesturesEnabled() { boolean flag; try { flag = zzaCL.isScrollGesturesEnabled(); } catch (RemoteException remoteexception) { throw new RuntimeRemoteException(remoteexception); } return flag; } public boolean isTiltGesturesEnabled() { boolean flag; try { flag = zzaCL.isTiltGesturesEnabled(); } catch (RemoteException remoteexception) { throw new RuntimeRemoteException(remoteexception); } return flag; } public boolean isZoomControlsEnabled() { boolean flag; try { flag = zzaCL.isZoomControlsEnabled(); } catch (RemoteException remoteexception) { throw new RuntimeRemoteException(remoteexception); } return flag; } public boolean isZoomGesturesEnabled() { boolean flag; try { flag = zzaCL.isZoomGesturesEnabled(); } catch (RemoteException remoteexception) { throw new RuntimeRemoteException(remoteexception); } return flag; } public void setAllGesturesEnabled(boolean flag) { try { zzaCL.setAllGesturesEnabled(flag); return; } catch (RemoteException remoteexception) { throw new RuntimeRemoteException(remoteexception); } } public void setCompassEnabled(boolean flag) { try { zzaCL.setCompassEnabled(flag); return; } catch (RemoteException remoteexception) { throw new RuntimeRemoteException(remoteexception); } } public void setIndoorLevelPickerEnabled(boolean flag) { try { zzaCL.setIndoorLevelPickerEnabled(flag); return; } catch (RemoteException remoteexception) { throw new RuntimeRemoteException(remoteexception); } } public void setMapToolbarEnabled(boolean flag) { try { zzaCL.setMapToolbarEnabled(flag); return; } catch (RemoteException remoteexception) { throw new RuntimeRemoteException(remoteexception); } } public void setMyLocationButtonEnabled(boolean flag) { try { zzaCL.setMyLocationButtonEnabled(flag); return; } catch (RemoteException remoteexception) { throw new RuntimeRemoteException(remoteexception); } } public void setRotateGesturesEnabled(boolean flag) { try { zzaCL.setRotateGesturesEnabled(flag); return; } catch (RemoteException remoteexception) { throw new RuntimeRemoteException(remoteexception); } } public void setScrollGesturesEnabled(boolean flag) { try { zzaCL.setScrollGesturesEnabled(flag); return; } catch (RemoteException remoteexception) { throw new RuntimeRemoteException(remoteexception); } } public void setTiltGesturesEnabled(boolean flag) { try { zzaCL.setTiltGesturesEnabled(flag); return; } catch (RemoteException remoteexception) { throw new RuntimeRemoteException(remoteexception); } } public void setZoomControlsEnabled(boolean flag) { try { zzaCL.setZoomControlsEnabled(flag); return; } catch (RemoteException remoteexception) { throw new RuntimeRemoteException(remoteexception); } } public void setZoomGesturesEnabled(boolean flag) { try { zzaCL.setZoomGesturesEnabled(flag); return; } catch (RemoteException remoteexception) { throw new RuntimeRemoteException(remoteexception); } } }