home *** CD-ROM | disk | FTP | other *** search
- package java.util;
-
- import java.io.Serializable;
-
- class Collections$UnmodifiableSortedSet extends Collections.UnmodifiableSet implements SortedSet, Serializable {
- // $FF: renamed from: ss java.util.SortedSet
- private SortedSet field_0;
-
- Collections$UnmodifiableSortedSet(SortedSet var1) {
- super(var1);
- this.field_0 = var1;
- }
-
- public Comparator comparator() {
- return this.field_0.comparator();
- }
-
- public SortedSet subSet(Object var1, Object var2) {
- return new Collections$UnmodifiableSortedSet(this.field_0.subSet(var1, var2));
- }
-
- public SortedSet headSet(Object var1) {
- return new Collections$UnmodifiableSortedSet(this.field_0.headSet(var1));
- }
-
- public SortedSet tailSet(Object var1) {
- return new Collections$UnmodifiableSortedSet(this.field_0.tailSet(var1));
- }
-
- public Object first() {
- return this.field_0.first();
- }
-
- public Object last() {
- return this.field_0.last();
- }
- }
-