// 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.model; import android.os.RemoteException; import com.google.android.gms.common.internal.zzu; import com.google.android.gms.maps.model.internal.zzi; // Referenced classes of package com.google.android.gms.maps.model: // RuntimeRemoteException, BitmapDescriptor, LatLng public final class Marker { private final zzi zzaDr; public Marker(zzi zzi1) { zzaDr = (zzi)zzu.zzu(zzi1); } public boolean equals(Object obj) { if (!(obj instanceof Marker)) { return false; } boolean flag; try { flag = zzaDr.zzh(((Marker)obj).zzaDr); } // Misplaced declaration of an exception variable catch (Object obj) { throw new RuntimeRemoteException(((RemoteException) (obj))); } return flag; } public float getAlpha() { float f; try { f = zzaDr.getAlpha(); } catch (RemoteException remoteexception) { throw new RuntimeRemoteException(remoteexception); } return f; } public String getId() { String s; try { s = zzaDr.getId(); } catch (RemoteException remoteexception) { throw new RuntimeRemoteException(remoteexception); } return s; } public LatLng getPosition() { LatLng latlng; try { latlng = zzaDr.getPosition(); } catch (RemoteException remoteexception) { throw new RuntimeRemoteException(remoteexception); } return latlng; } public float getRotation() { float f; try { f = zzaDr.getRotation(); } catch (RemoteException remoteexception) { throw new RuntimeRemoteException(remoteexception); } return f; } public String getSnippet() { String s; try { s = zzaDr.getSnippet(); } catch (RemoteException remoteexception) { throw new RuntimeRemoteException(remoteexception); } return s; } public String getTitle() { String s; try { s = zzaDr.getTitle(); } catch (RemoteException remoteexception) { throw new RuntimeRemoteException(remoteexception); } return s; } public int hashCode() { int i; try { i = zzaDr.hashCodeRemote(); } catch (RemoteException remoteexception) { throw new RuntimeRemoteException(remoteexception); } return i; } public void hideInfoWindow() { try { zzaDr.hideInfoWindow(); return; } catch (RemoteException remoteexception) { throw new RuntimeRemoteException(remoteexception); } } public boolean isDraggable() { boolean flag; try { flag = zzaDr.isDraggable(); } catch (RemoteException remoteexception) { throw new RuntimeRemoteException(remoteexception); } return flag; } public boolean isFlat() { boolean flag; try { flag = zzaDr.isFlat(); } catch (RemoteException remoteexception) { throw new RuntimeRemoteException(remoteexception); } return flag; } public boolean isInfoWindowShown() { boolean flag; try { flag = zzaDr.isInfoWindowShown(); } catch (RemoteException remoteexception) { throw new RuntimeRemoteException(remoteexception); } return flag; } public boolean isVisible() { boolean flag; try { flag = zzaDr.isVisible(); } catch (RemoteException remoteexception) { throw new RuntimeRemoteException(remoteexception); } return flag; } public void remove() { try { zzaDr.remove(); return; } catch (RemoteException remoteexception) { throw new RuntimeRemoteException(remoteexception); } } public void setAlpha(float f) { try { zzaDr.setAlpha(f); return; } catch (RemoteException remoteexception) { throw new RuntimeRemoteException(remoteexception); } } public void setAnchor(float f, float f1) { try { zzaDr.setAnchor(f, f1); return; } catch (RemoteException remoteexception) { throw new RuntimeRemoteException(remoteexception); } } public void setDraggable(boolean flag) { try { zzaDr.setDraggable(flag); return; } catch (RemoteException remoteexception) { throw new RuntimeRemoteException(remoteexception); } } public void setFlat(boolean flag) { try { zzaDr.setFlat(flag); return; } catch (RemoteException remoteexception) { throw new RuntimeRemoteException(remoteexception); } } public void setIcon(BitmapDescriptor bitmapdescriptor) { try { zzaDr.zzv(bitmapdescriptor.zzvg()); return; } // Misplaced declaration of an exception variable catch (BitmapDescriptor bitmapdescriptor) { throw new RuntimeRemoteException(bitmapdescriptor); } } public void setInfoWindowAnchor(float f, float f1) { try { zzaDr.setInfoWindowAnchor(f, f1); return; } catch (RemoteException remoteexception) { throw new RuntimeRemoteException(remoteexception); } } public void setPosition(LatLng latlng) { try { zzaDr.setPosition(latlng); return; } // Misplaced declaration of an exception variable catch (LatLng latlng) { throw new RuntimeRemoteException(latlng); } } public void setRotation(float f) { try { zzaDr.setRotation(f); return; } catch (RemoteException remoteexception) { throw new RuntimeRemoteException(remoteexception); } } public void setSnippet(String s) { try { zzaDr.setSnippet(s); return; } // Misplaced declaration of an exception variable catch (String s) { throw new RuntimeRemoteException(s); } } public void setTitle(String s) { try { zzaDr.setTitle(s); return; } // Misplaced declaration of an exception variable catch (String s) { throw new RuntimeRemoteException(s); } } public void setVisible(boolean flag) { try { zzaDr.setVisible(flag); return; } catch (RemoteException remoteexception) { throw new RuntimeRemoteException(remoteexception); } } public void showInfoWindow() { try { zzaDr.showInfoWindow(); return; } catch (RemoteException remoteexception) { throw new RuntimeRemoteException(remoteexception); } } }