Java - repaint()方法被调用一次然后它没有显示任何东西

时间:2016-04-03 07:12:40

标签: java swing repaint

我一直在尝试绘制一个n-ary树结构图,所以当我进入某个节点时它会出现,但它并没有。

它只绘制根然后它"删除"一切。

这是我的代码:

public LinkedList<Node> nodes;
public Tree tree;

public TreeViewer() {

    initComponents();
    this.nodes = new LinkedList<>();
}

@Override
public void paintComponent(Graphics g) {
    super.paintComponent(g); //To change body of generated methods, choose Tools | Templates.

    if (this.tree != null) {
        this.checkTree(this.tree.getRoot(), g, 200, 20, 20, 20);
    }else{
        System.out.println("empty");
    }
}

public void checkTree(Node current, Graphics g, int x, int y, int height, int width) {

    current.setX(x);
    current.setY(y);
    current.setHeight(height);
    current.setWidth(width);

    if (!this.nodes.contains(current)) {
        g.drawString(current.name, x, y);
        g.setColor(Color.black);
        this.nodes.add(current);

        if (current.getSon() != null && current.getBrother() == null) {
            this.checkTree(current.getSon(), g, x, y + 40, height, width);

        } else if (current.getBrother() != null && current.getSon() == null) {
            this.checkTree(current.getBrother(), g, x - 30, y, height, width);

        } else if (current.getBrother() != null && current.getSon() != null) {
            this.checkTree(current.getSon(), g, x, y + 40, height, width);
            this.checkTree(current.getBrother(), g, x - 30, y, height, width);
        }
    }
}

我添加了一个按钮节点,这里是代码:

private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {                                         
    if(this.modificator.getTree() == null){
        Node current = new Node(JOptionPane.showInputDialog("Type root ID:"));
        this.modificator.setTree( new Tree(current));

    }else{
        Node current = new Node(JOptionPane.showInputDialog("Type ID:"));
        this.modificator.getTree().addSon(this.modificator.getTree().getRoot(), this.modificator.getTree().getRoot(), current);

    }
    this.modificator.repaint();
}

因此,无论何时我在第一次调用repaint()之后,我的问题都存在于所有绘制的内容(只有根)被删除&#34;&#34;小组讨论。

1 个答案:

答案 0 :(得分:3)

checkTree内你有这个:

if (!this.nodes.contains(current))

据推测,这是为了处理图表中的周期,但我没有看到清除this.nodes的任何地方。这意味着,在第二次调用paintComponent时,您会立即退出checkTree,因为根已经添加到this.nodes

如果您在this.nodes结束时清除了paintComponent可能有效的话。