home *** CD-ROM | disk | FTP | other *** search
/ S283 Planetary Science &n…he Search for Life DVD 2 / DVD-ROM.iso / install / jre1_3 / lib / rt.jar / javax / swing / text / ElementIterator$StackItem.class (.txt) < prev    next >
Encoding:
Java Class File  |  1979-12-31  |  1.4 KB  |  51 lines

  1. package javax.swing.text;
  2.  
  3. class ElementIterator$StackItem implements Cloneable {
  4.    Element item;
  5.    int childIndex;
  6.    // $FF: synthetic field
  7.    private final ElementIterator this$0;
  8.  
  9.    private ElementIterator$StackItem(ElementIterator var1, Element var2) {
  10.       this.this$0 = var1;
  11.       this.item = var2;
  12.       this.childIndex = -1;
  13.    }
  14.  
  15.    private void incrementIndex() {
  16.       ++this.childIndex;
  17.    }
  18.  
  19.    private Element getElement() {
  20.       return this.item;
  21.    }
  22.  
  23.    private int getIndex() {
  24.       return this.childIndex;
  25.    }
  26.  
  27.    protected Object clone() throws CloneNotSupportedException {
  28.       return super.clone();
  29.    }
  30.  
  31.    // $FF: synthetic method
  32.    ElementIterator$StackItem(ElementIterator var1, Element var2, ElementIterator.1 var3) {
  33.       this(var1, var2);
  34.    }
  35.  
  36.    // $FF: synthetic method
  37.    static Element access$100(ElementIterator$StackItem var0) {
  38.       return var0.getElement();
  39.    }
  40.  
  41.    // $FF: synthetic method
  42.    static int access$200(ElementIterator$StackItem var0) {
  43.       return var0.getIndex();
  44.    }
  45.  
  46.    // $FF: synthetic method
  47.    static void access$300(ElementIterator$StackItem var0) {
  48.       var0.incrementIndex();
  49.    }
  50. }
  51.