// 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.zzk; // Referenced classes of package com.google.android.gms.maps.model: // RuntimeRemoteException public final class TileOverlay { private final zzk zzaDF; public TileOverlay(zzk zzk1) { zzaDF = (zzk)zzu.zzu(zzk1); } public void clearTileCache() { try { zzaDF.clearTileCache(); return; } catch (RemoteException remoteexception) { throw new RuntimeRemoteException(remoteexception); } } public boolean equals(Object obj) { if (!(obj instanceof TileOverlay)) { return false; } boolean flag; try { flag = zzaDF.zza(((TileOverlay)obj).zzaDF); } // Misplaced declaration of an exception variable catch (Object obj) { throw new RuntimeRemoteException(((RemoteException) (obj))); } return flag; } public boolean getFadeIn() { boolean flag; try { flag = zzaDF.getFadeIn(); } catch (RemoteException remoteexception) { throw new RuntimeRemoteException(remoteexception); } return flag; } public String getId() { String s; try { s = zzaDF.getId(); } catch (RemoteException remoteexception) { throw new RuntimeRemoteException(remoteexception); } return s; } public float getZIndex() { float f; try { f = zzaDF.getZIndex(); } catch (RemoteException remoteexception) { throw new RuntimeRemoteException(remoteexception); } return f; } public int hashCode() { int i; try { i = zzaDF.hashCodeRemote(); } catch (RemoteException remoteexception) { throw new RuntimeRemoteException(remoteexception); } return i; } public boolean isVisible() { boolean flag; try { flag = zzaDF.isVisible(); } catch (RemoteException remoteexception) { throw new RuntimeRemoteException(remoteexception); } return flag; } public void remove() { try { zzaDF.remove(); return; } catch (RemoteException remoteexception) { throw new RuntimeRemoteException(remoteexception); } } public void setFadeIn(boolean flag) { try { zzaDF.setFadeIn(flag); return; } catch (RemoteException remoteexception) { throw new RuntimeRemoteException(remoteexception); } } public void setVisible(boolean flag) { try { zzaDF.setVisible(flag); return; } catch (RemoteException remoteexception) { throw new RuntimeRemoteException(remoteexception); } } public void setZIndex(float f) { try { zzaDF.setZIndex(f); return; } catch (RemoteException remoteexception) { throw new RuntimeRemoteException(remoteexception); } } }