Advertisement
AndrewHaxalot

Untitled

Apr 9th, 2014
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.79 KB | None | 0 0
  1. // Decompiled by Jad v1.5.8e. Copyright 2001 Pavel Kouznetsov.
  2. // Jad home page: http://www.geocities.com/kpdus/jad.html
  3. // Decompiler options: braces fieldsfirst space lnc
  4.  
  5. package com.facebook.user.model;
  6.  
  7. import android.os.Parcel;
  8. import android.os.Parcelable;
  9.  
  10. // Referenced classes of package com.facebook.user.model:
  11. // n
  12.  
  13. public class UserFbidIdentifier
  14. implements Parcelable
  15. {
  16.  
  17. public static final android.os.Parcelable.Creator CREATOR = new n();
  18. private final String a;
  19.  
  20. private UserFbidIdentifier(Parcel parcel)
  21. {
  22. a = parcel.readString();
  23. }
  24.  
  25. UserFbidIdentifier(Parcel parcel, byte byte0)
  26. {
  27. this(parcel);
  28. }
  29.  
  30. public UserFbidIdentifier(String s)
  31. {
  32. a = s;
  33. }
  34.  
  35. public final String a()
  36. {
  37. return a;
  38. }
  39.  
  40. public int describeContents()
  41. {
  42. return 0;
  43. }
  44.  
  45. public boolean equals(Object obj)
  46. {
  47. if (this != obj) goto _L2; else goto _L1
  48. _L1:
  49. return true;
  50. _L2:
  51. UserFbidIdentifier userfbididentifier;
  52. if (!(obj instanceof UserFbidIdentifier))
  53. {
  54. return false;
  55. }
  56. userfbididentifier = (UserFbidIdentifier)obj;
  57. if (a == null) goto _L4; else goto _L3
  58. _L3:
  59. if (a.equals(userfbididentifier.a)) goto _L1; else goto _L5
  60. _L5:
  61. return false;
  62. _L4:
  63. if (userfbididentifier.a == null)
  64. {
  65. return true;
  66. }
  67. if (true) goto _L5; else goto _L6
  68. _L6:
  69. }
  70.  
  71. public int hashCode()
  72. {
  73. if (a != null)
  74. {
  75. return a.hashCode();
  76. } else
  77. {
  78. return 0;
  79. }
  80. }
  81.  
  82. public void writeToParcel(Parcel parcel, int i)
  83. {
  84. parcel.writeString(a());
  85. }
  86.  
  87. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement