1 16 package org.apache.xerces.dom; 17 18 19 36 41 42 class LCount 43 { 44 static java.util.Hashtable lCounts=new java.util.Hashtable (); 45 public int captures=0,bubbles=0,defaults, total=0; 46 47 static LCount lookup(String evtName) 48 { 49 LCount lc=(LCount)lCounts.get(evtName); 50 if(lc==null) 51 lCounts.put(evtName,(lc=new LCount())); 52 return lc; 53 } 54 } | Popular Tags |