Esempio n. 1
0
 String getCurrentPackageName() {
   String s = null;
   try {
     Integer o = (Integer) m_cache.get(DebugCLI.LIST_MODULE);
     s = m_cache.getPackageName(o.intValue());
   } catch (NullPointerException npe) {
   } catch (ClassCastException cce) {
   }
   return s;
 }