private String _path2 = "";
public ApitTreeUI() {
initComponents();
HTMLEditorKit hed = new HTMLEditorKit();
StyleSheet sheet = hed.getStyleSheet();
sheet.addRule(".php-boundry {font-weight:bold;}");
sheet.addRule(".php-function-or-constant {color:#0000AA; }");
sheet.addRule(".php-string {color:#AA0000; }");
sheet.addRule(".php-constant {color:#AA3333; }");
sheet.addRule(".php-variable {color:#333300; }");
sheet.addRule(".php-keyword {color:#006600; }");
sheet.addRule("pre {background-color: #F6F6F2; white-space:pre-wrap;}");
sheet.addRule(".code {background-color: #F6F6F2; white-space:pre-wrap;margin-bottom:5px;margin-top:5px;}");
sheet.addRule(".code p{margin-left:5px}");
Document doc = hed.createDefaultDocument();
txtHelp.setEditorKit(hed);
tree.setModel(treeModel);
tree.setModel(treeModel);
tree.setCellRenderer(new TreeRenderer());