// scrollpane.setViewportView();
scrollpane.setBackground(Color.WHITE);
scrollpane.setOpaque(true);
contentPane.add(scrollpane, BorderLayout.CENTER);
mainNode = new NodeMain(mainClass);
mainNode.refresh(null);
treemodel = new DefaultTreeModel(mainNode);
tree = new JTree(treemodel);
tree.addTreeWillExpandListener(this);
tree.putClientProperty("JTree.lineStyle", "Angled");