home *** CD-ROM | disk | FTP | other *** search
- package java.util;
-
- import java.util.Collections.UnmodifiableList;
-
- class Collections$2 implements ListIterator {
- // $FF: renamed from: i java.util.ListIterator
- ListIterator field_0;
- // $FF: synthetic field
- private final int val$index;
- // $FF: synthetic field
- private final Collections.UnmodifiableList this$0;
-
- Collections$2(Collections.UnmodifiableList var1, int var2) {
- this.this$0 = var1;
- this.val$index = var2;
- this.field_0 = UnmodifiableList.access$000(this.this$0).listIterator(this.val$index);
- }
-
- public boolean hasNext() {
- return this.field_0.hasNext();
- }
-
- public Object next() {
- return this.field_0.next();
- }
-
- public boolean hasPrevious() {
- return this.field_0.hasPrevious();
- }
-
- public Object previous() {
- return this.field_0.previous();
- }
-
- public int nextIndex() {
- return this.field_0.nextIndex();
- }
-
- public int previousIndex() {
- return this.field_0.previousIndex();
- }
-
- public void remove() {
- throw new UnsupportedOperationException();
- }
-
- public void set(Object var1) {
- throw new UnsupportedOperationException();
- }
-
- public void add(Object var1) {
- throw new UnsupportedOperationException();
- }
- }
-