StickerCategory.java
1.21 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
package com.bitstrips.imoji.browser.models;
import android.support.annotation.Nullable;
import com.bitstrips.imoji.models.Sticker;
import java.util.List;
public class StickerCategory
{
private final String a;
private final List<Sticker> b;
private final Header c;
private final EmptyStateType d;
public StickerCategory(String paramString, List<Sticker> paramList, @Nullable Header paramHeader, EmptyStateType paramEmptyStateType)
{
this.a = paramString;
this.b = paramList;
this.c = paramHeader;
this.d = paramEmptyStateType;
}
public EmptyStateType getEmptyStateType()
{
return this.d;
}
public Header getHeader()
{
return this.c;
}
public String getName()
{
return this.a;
}
public List<Sticker> getStickers()
{
return this.b;
}
public boolean hasHeader()
{
return this.c != null;
}
public boolean isEmpty()
{
return getStickers().isEmpty();
}
public static enum EmptyStateType
{
private EmptyStateType() {}
}
}
/* Location: /home/merong/decompile/hackery-dex2jar.jar!/com/bitstrips/imoji/browser/models/StickerCategory.class
* Java compiler version: 6 (50.0)
* JD-Core Version: 0.7.1
*/