Bugzilla Stuff
Bugzilla's Group Set Bitmask

Java Dev
ComponentFocusTree.java
The quick and dirty is that this is a thread that recursively looks through Component/Containers structure. It prints out the structure and puts a marker next to the Component that contains the focus. Enjoy

Small Bytes
// copy a vector into an array of any type
String[] strings = new String[v.size()];
v.copyInto(strings);