ParcelableVolumeInfo.java
1.52 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
package android.support.v4.media.session;
import android.os.Parcel;
import android.os.Parcelable;
import android.os.Parcelable.Creator;
public class ParcelableVolumeInfo
implements Parcelable
{
public static final Parcelable.Creator<ParcelableVolumeInfo> CREATOR = new Parcelable.Creator() {};
public int audioStream;
public int controlType;
public int currentVolume;
public int maxVolume;
public int volumeType;
public ParcelableVolumeInfo(int paramInt1, int paramInt2, int paramInt3, int paramInt4, int paramInt5)
{
this.volumeType = paramInt1;
this.audioStream = paramInt2;
this.controlType = paramInt3;
this.maxVolume = paramInt4;
this.currentVolume = paramInt5;
}
public ParcelableVolumeInfo(Parcel paramParcel)
{
this.volumeType = paramParcel.readInt();
this.controlType = paramParcel.readInt();
this.maxVolume = paramParcel.readInt();
this.currentVolume = paramParcel.readInt();
this.audioStream = paramParcel.readInt();
}
public int describeContents()
{
return 0;
}
public void writeToParcel(Parcel paramParcel, int paramInt)
{
paramParcel.writeInt(this.volumeType);
paramParcel.writeInt(this.controlType);
paramParcel.writeInt(this.maxVolume);
paramParcel.writeInt(this.currentVolume);
paramParcel.writeInt(this.audioStream);
}
}
/* Location: /home/merong/decompile/hackery-dex2jar.jar!/android/support/v4/media/session/ParcelableVolumeInfo.class
* Java compiler version: 6 (50.0)
* JD-Core Version: 0.7.1
*/