1 57 package org.xquark.xpath.datamodel.xerces.dom; 58 59 60 61 83 class LCount 84 { 85 static java.util.Hashtable lCounts=new java.util.Hashtable (); 86 public int captures=0,bubbles=0,defaults=0; 87 88 static LCount lookup(String evtName) 89 { 90 LCount lc=(LCount)lCounts.get(evtName); 91 if(lc==null) 92 lCounts.put(evtName,(lc=new LCount())); 93 return lc; 94 } 95 } | Popular Tags |