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