Esempio n. 1
0
 private void setNext(NBTValue val)
 {
     this.next  = val;
     this.types = null;
     this.flds  = null;
     this.crtrs = null;
 }
Esempio n. 2
0
 internal NBTValue(BTType btType)
 {
     this.next   = null;
     this.types  = new ArrayList();
     this.btType = btType;
     this.flds   = new Hashtable();
     this.crtrs  = new Creators();
 }
Esempio n. 3
0
 private void setNext(NBTValue val)
 {
     this.next = val;
     this.types = null;
     this.flds = null;
     this.crtrs = null;
 }
Esempio n. 4
0
 internal NBTValue(BTType btType)
 {
     this.next = null;
     this.types = new ArrayList();
     this.btType = btType;
     this.flds = new Hashtable();
     this.crtrs = new Creators();
 }