no$f.java
1.23 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
import com.google.common.base.Preconditions;
import com.google.common.collect.ForwardingSortedSet;
import java.util.Collection;
import java.util.SortedSet;
final class no$f<E>
extends ForwardingSortedSet<E>
{
final SortedSet<E> a;
final nn<? super E> b;
no$f(SortedSet<E> paramSortedSet, nn<? super E> paramnn)
{
this.a = ((SortedSet)Preconditions.checkNotNull(paramSortedSet));
this.b = ((nn)Preconditions.checkNotNull(paramnn));
}
public final boolean add(E paramE)
{
this.b.a(paramE);
return this.a.add(paramE);
}
public final boolean addAll(Collection<? extends E> paramCollection)
{
return this.a.addAll(no.b(paramCollection, this.b));
}
protected final SortedSet<E> delegate()
{
return this.a;
}
public final SortedSet<E> headSet(E paramE)
{
return no.a(this.a.headSet(paramE), this.b);
}
public final SortedSet<E> subSet(E paramE1, E paramE2)
{
return no.a(this.a.subSet(paramE1, paramE2), this.b);
}
public final SortedSet<E> tailSet(E paramE)
{
return no.a(this.a.tailSet(paramE), this.b);
}
}
/* Location: /home/merong/decompile/hackery-dex2jar.jar!/no$f.class
* Java compiler version: 6 (50.0)
* JD-Core Version: 0.7.1
*/