1 16 17 package org.apache.xerces.dom; 18 19 import java.io.Serializable ; 20 21 31 class NodeListCache implements Serializable { 32 33 34 private static final long serialVersionUID = 3258135743263224377L; 35 36 37 int fLength = -1; 38 39 40 int fChildIndex = -1; 41 42 43 ChildNode fChild; 44 45 46 ParentNode fOwner; 47 48 50 NodeListCache next; 51 52 NodeListCache(ParentNode owner) { 53 fOwner = owner; 54 } 55 } 56 57 | Popular Tags |