no$f.java 1.23 KB
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
 */