jTracer  1.03
Stack trace visualization tool
Enumeration org.libcsdbg.jtracer.Registry.getSectionKeys ( String  nm)

Get all the keys of a section.

Parameters
[in]nmthe section name
Returns
the key enumeration or null if no such section exists

Definition at line 183 of file Registry.java.

184  {
185  Hashtable<String, Object> sect = get(nm);
186  if (sect != null)
187  return sect.keys();
188 
189  return null;
190  }