Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // 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.facebook.user.model;
- import android.os.Parcel;
- import android.os.Parcelable;
- // Referenced classes of package com.facebook.user.model:
- // n
- public class UserFbidIdentifier
- implements Parcelable
- {
- public static final android.os.Parcelable.Creator CREATOR = new n();
- private final String a;
- private UserFbidIdentifier(Parcel parcel)
- {
- a = parcel.readString();
- }
- UserFbidIdentifier(Parcel parcel, byte byte0)
- {
- this(parcel);
- }
- public UserFbidIdentifier(String s)
- {
- a = s;
- }
- public final String a()
- {
- return a;
- }
- public int describeContents()
- {
- return 0;
- }
- public boolean equals(Object obj)
- {
- if (this != obj) goto _L2; else goto _L1
- _L1:
- return true;
- _L2:
- UserFbidIdentifier userfbididentifier;
- if (!(obj instanceof UserFbidIdentifier))
- {
- return false;
- }
- userfbididentifier = (UserFbidIdentifier)obj;
- if (a == null) goto _L4; else goto _L3
- _L3:
- if (a.equals(userfbididentifier.a)) goto _L1; else goto _L5
- _L5:
- return false;
- _L4:
- if (userfbididentifier.a == null)
- {
- return true;
- }
- if (true) goto _L5; else goto _L6
- _L6:
- }
- public int hashCode()
- {
- if (a != null)
- {
- return a.hashCode();
- } else
- {
- return 0;
- }
- }
- public void writeToParcel(Parcel parcel, int i)
- {
- parcel.writeString(a());
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement