RegionData.java
1.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
package com.radiusnetworks.ibeacon.service;
import android.os.Parcel;
import android.os.Parcelable;
import android.os.Parcelable.Creator;
import com.radiusnetworks.ibeacon.Region;
public class RegionData
extends Region
implements Parcelable
{
public static final Parcelable.Creator<RegionData> CREATOR = new Parcelable.Creator() {};
private RegionData(Parcel paramParcel)
{
this.major = Integer.valueOf(paramParcel.readInt());
if (this.major.intValue() == -1) {
this.major = null;
}
this.minor = Integer.valueOf(paramParcel.readInt());
if (this.minor.intValue() == -1) {
this.minor = null;
}
this.proximityUuid = paramParcel.readString();
this.uniqueId = paramParcel.readString();
}
public RegionData(Region paramRegion)
{
super(paramRegion);
}
public RegionData(String paramString1, String paramString2, Integer paramInteger1, Integer paramInteger2)
{
super(paramString1, paramString2, paramInteger1, paramInteger2);
}
public int describeContents()
{
return 0;
}
public void writeToParcel(Parcel paramParcel, int paramInt)
{
int i = -1;
if (this.major == null)
{
paramInt = -1;
paramParcel.writeInt(paramInt);
if (this.minor != null) {
break label58;
}
}
label58:
for (paramInt = i;; paramInt = this.minor.intValue())
{
paramParcel.writeInt(paramInt);
paramParcel.writeString(this.proximityUuid);
paramParcel.writeString(this.uniqueId);
return;
paramInt = this.major.intValue();
break;
}
}
}
/* Location: /home/merong/decompile/hackery-dex2jar.jar!/com/radiusnetworks/ibeacon/service/RegionData.class
* Java compiler version: 6 (50.0)
* JD-Core Version: 0.7.1
*/