/* */ }
/* 183 */ this._monitor.setNDCLogRecordFilter(text);
/* */ }
/* */
/* */ protected void processCategories(Document doc) {
/* 187 */ CategoryExplorerTree tree = this._monitor.getCategoryExplorerTree();
/* 188 */ CategoryExplorerModel model = tree.getExplorerModel();
/* 189 */ NodeList nodeList = doc.getElementsByTagName("category");
/* */
/* 192 */ NamedNodeMap map = nodeList.item(0).getAttributes();
/* 193 */ int j = getValue(map, "name").equalsIgnoreCase("Categories") ? 1 : 0;
/* */
/* 196 */ for (int i = nodeList.getLength() - 1; i >= j; i--) {
/* 197 */ Node n = nodeList.item(i);
/* 198 */ map = n.getAttributes();
/* 199 */ CategoryNode chnode = model.addCategory(new CategoryPath(getValue(map, "path")));
/* 200 */ chnode.setSelected(getValue(map, "selected").equalsIgnoreCase("true"));
/* 201 */ if (getValue(map, "expanded").equalsIgnoreCase("true"));
/* 202 */ tree.expandPath(model.getTreePathToRoot(chnode));
/* */ }
/* */ }