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